diff options
author | Oyvind Repvik <nail@nslu2-linux.org> | 2005-08-05 12:07:07 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-08-05 12:07:07 +0000 |
commit | edaff2fb8298285c54837b508708beb3e8e632de (patch) | |
tree | 12966c24773f21e40b49423728e05e8f24408aad /Makefile | |
parent | c531cf53bf1b81581e035b3f84583210b63b50d4 (diff) |
Ugh, unquote the contents of SSH_KEY variable so it's not looking for ~/.ssh/id_dsa in the current dir
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,7 +5,7 @@ SVN_USER ?= ${USER} CVS_USER ?= ${USER} SVN_SSH ?= "-l ${SVN_USER}" -SSH_KEY ?= "~/.ssh/id_dsa" # Default. Change if you have several keys you use on a regular basis +SSH_KEY ?= ~/.ssh/id_dsa # Default. Change if you have several keys you use on a regular basis HOST_MACHINE:=$(shell uname -m | sed \ -e 's/i[3-9]86/i386/' \ |