summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Gundersen <teg@jklm.no>2012-03-14 14:06:26 +0100
committerDominik Brodowski <linux@dominikbrodowski.net>2012-03-25 20:52:55 +0200
commit468fb2ebb69f9c10c5055f3647bd54ad62d2b5f9 (patch)
tree9c0c6e4c156940f1764d2151bbc9d42035dbd3e6
parent645606056ff0c50e4817e3dcd44bb50cb1ac3b92 (diff)
downloadpcmciautils-master.tar.gz
Makefile: don't hardcode the path to 'install'HEADmaster
In Arch Linux we currently use /bin/install rather than /usr/bin/install. This change work with both locations and avoids us having to change the Makefile. Signed-off-by: Tom Gundersen <teg@jklm.no> 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 9d538a9..ea44bb6 100644
--- a/Makefile
+++ b/Makefile
@@ -76,7 +76,7 @@ sbindir = ${exec_prefix}/sbin
mandir = ${prefix}/usr/share/man
udevdir = ${prefix}/lib/udev
-INSTALL = /usr/bin/install -c
+INSTALL = install -c
INSTALL_PROGRAM = ${INSTALL}
INSTALL_DATA = ${INSTALL} -m 644
INSTALL_SCRIPT = ${INSTALL_PROGRAM}