aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorgreg@kroah.com <greg@kroah.com>2004-10-15 17:15:52 -0700
committerGreg KH <gregkh@suse.de>2005-04-26 22:02:44 -0700
commit31a6e02871315a298b906b0915c779369dcf3f62 (patch)
treed1ce6d8aa85c41d4c7bdf303f5238d5ea3c4b9ae /Makefile
parent139087e844b5e2a7f029b608db6a855cb2ca1ac3 (diff)
downloadudev-31a6e02871315a298b906b0915c779369dcf3f62.tar.gz
[PATCH] crap, I messed up the 'sed' instances pretty badly, this fixes the config and man page mess.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 167c88e5..fd46a93a 100644
--- a/Makefile
+++ b/Makefile
@@ -262,14 +262,14 @@ udev_version.h:
@echo \#define UDEVD_BIN \"$(DESTDIR)$(sbindir)/udevd\" >> $@
# Rules on how to create the generated config files
-$(LOCAL_CFG_DIR)/udev.conf: $(HOST_PROGS)
- $(QUIET) sed -e "s:@udevdir@:$(udevdir):" -e "s:@configdir@:$(configdir):" < $(LOCAL_CFG_DIR)/udev.conf.in > $@
+$(LOCAL_CFG_DIR)/udev.conf:
+ sed -e "s:@udevdir@:$(udevdir):" -e "s:@configdir@:$(configdir):" < $(LOCAL_CFG_DIR)/udev.conf.in > $@
GEN_MANPAGES = udev.8
GEN_MANPAGESIN = udev.8.in
# Rules on how to create the man pages
-$(GEN_MANPAGES): $(GEN_MANPAGESIN) $(HOST_PROGS)
- $(QUIET) sed -e "s:@udevdir@:$(udevdir):" < $@.in > $@
+$(GEN_MANPAGES): $(GEN_MANPAGESIN)
+ sed -e "s:@udevdir@:$(udevdir):" < $@.in > $@
$(OBJS): $(GEN_HEADERS) $(HOST_PROGS)
$(ROOT).o: $(GEN_HEADERS) $(HOST_PROGS)