summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2006-03-27 11:50:50 +0100
committerDominik Brodowski <linux@dominikbrodowski.net>2006-03-31 18:22:32 +0200
commit9931a8ed6cadd7e4ac8f66bbc28339bc21b07e8a (patch)
treeac405a4b7353fe2de8ec13250543eda4c63e10d7
parentfbe45041187ceb738f17e74fe033d48161ecefb2 (diff)
downloadpcmciautils-9931a8ed6cadd7e4ac8f66bbc28339bc21b07e8a.tar.gz
[PATCH] hardcoded path to ln is often wrong
On Debian, /usr/bin/ln doesn't exist; hardcoding the path to ln seems like overkill. This patch removes that hardcoding. Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 198e0c7..d08ae3a 100644
--- a/Makefile
+++ b/Makefile
@@ -73,7 +73,7 @@ INSTALL = /usr/bin/install -c
INSTALL_PROGRAM = ${INSTALL}
INSTALL_DATA = ${INSTALL} -m 644
INSTALL_SCRIPT = ${INSTALL_PROGRAM}
-SYMLINK = /usr/bin/ln -sf
+SYMLINK = ln -sf
# place to put our hotplug scripts nodes
hotplugdir = ${etcdir}/hotplug