summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorOyvind Repvik <nail@nslu2-linux.org>2005-08-05 12:07:07 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-08-05 12:07:07 +0000
commitedaff2fb8298285c54837b508708beb3e8e632de (patch)
tree12966c24773f21e40b49423728e05e8f24408aad /Makefile
parentc531cf53bf1b81581e035b3f84583210b63b50d4 (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--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5d2551391f..e51509494e 100644
--- a/Makefile
+++ b/Makefile
@@ -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/' \