From: Jan Engelhardt Date: Wed, 13 Aug 2008 12:43:56 +0000 (+0200) Subject: build: fix initext.c dependency X-Git-Tag: v1.4.2~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7963845decf9de40e612e62eaf7ef62f15cf8080;p=thirdparty%2Fiptables.git build: fix initext.c dependency initext?.c is generated within the current directory, not in ${srcdir}. Signed-off-by: Jan Engelhardt Signed-off-by: Patrick McHardy --- diff --git a/extensions/GNUmakefile.in b/extensions/GNUmakefile.in index 4a3bf4e4..1f063c8c 100644 --- a/extensions/GNUmakefile.in +++ b/extensions/GNUmakefile.in @@ -75,7 +75,7 @@ clean: distclean: clean rm -f .*.d .*.dd; -init%.o: ${srcdir}/init%.c +init%.o: init%.c ${AM_VERBOSE_CC} ${CC} ${AM_DEPFLAGS} ${AM_CFLAGS} -D_INIT=$*_init ${CFLAGS} -o $@ -c $<; -include .*.d