From: greg@kroah.com Date: Sat, 16 Oct 2004 00:15:52 +0000 (-0700) Subject: [PATCH] crap, I messed up the 'sed' instances pretty badly, this fixes the config... X-Git-Tag: 039~12 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=31a6e02871315a298b906b0915c779369dcf3f62 [PATCH] crap, I messed up the 'sed' instances pretty badly, this fixes the config and man page mess. --- diff --git a/Makefile b/Makefile index 167c88e55..fd46a93a4 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)