From edaff2fb8298285c54837b508708beb3e8e632de Mon Sep 17 00:00:00 2001 From: Oyvind Repvik Date: Fri, 5 Aug 2005 12:07:07 +0000 Subject: [PATCH] Ugh, unquote the contents of SSH_KEY variable so it's not looking for ~/.ssh/id_dsa in the current dir --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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/' \ -- 2.39.5