summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2008-08-13 14:43:56 +0200
committerPatrick McHardy <kaber@trash.net>2008-08-13 14:43:56 +0200
commit7963845decf9de40e612e62eaf7ef62f15cf8080 (patch)
tree11aaf0d55d19c694515982de99189eb3e7e0e2ef
parentee38146c2f87a4c80865b706edba1b3947b2f3ae (diff)
build: fix initext.c dependency
initext?.c is generated within the current directory, not in ${srcdir}. Signed-off-by: Jan Engelhardt <jengelh@medozas.de> Signed-off-by: Patrick McHardy <kaber@trash.net>
-rw-r--r--extensions/GNUmakefile.in2
1 files changed, 1 insertions, 1 deletions
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