summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDominik Brodowski <linux@dominikbrodowski.net>2010-01-05 18:19:23 +0100
committerDominik Brodowski <linux@dominikbrodowski.net>2010-01-05 18:19:23 +0100
commit3545506ac03c18eb59cabd474a627e127634d270 (patch)
treed78ad68403e7d520131688cdee1b6063ea93b3e8
parentffb914e96df9d7c848ebcab7cd39818b6b1d13f3 (diff)
downloadpcmciautils-3545506ac03c18eb59cabd474a627e127634d270.tar.gz
Always use path without trailing slash
Only udevdir set its path with a trailing slash. Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 517b25c..3462aea 100644
--- a/Makefile
+++ b/Makefile
@@ -67,7 +67,7 @@ exec_prefix = ${prefix}
etcdir = ${prefix}/etc
sbindir = ${exec_prefix}/sbin
mandir = ${prefix}/usr/share/man
-udevdir = ${prefix}/lib/udev/
+udevdir = ${prefix}/lib/udev
INSTALL = /usr/bin/install -c
INSTALL_PROGRAM = ${INSTALL}
@@ -251,7 +251,7 @@ $(CISDUMP): $(LIBC) src/read-cis.o debug/parse_cis.o debug/dump_cis.o
$(QUIET) $(STRIPCMD) $@
udevrules:
- cat $(UDEV_RULES) | sed -e "s#__UDEVHELPERDIR__/#${udevhelperdir}#g" > $(UDEV_RULES_FILE)
+ cat $(UDEV_RULES) | sed -e "s#__UDEVHELPERDIR__#${udevhelperdir}#g" > $(UDEV_RULES_FILE)
clean:
-find . \( -not -type d \) -and \( -name '*~' -o -name '*.[oas]' \) -type f -print \