diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/Makefile.am | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2004-04-23 Marcus Brinkmann <[email protected]> + + * src/Makefile.am (mkerrcodes): Do not use $< in non-inference rule. + (code-from-errno.h): Likewise. + 2004-04-22 Marcus Brinkmann <[email protected]> * src/Makefile.am (gpg_error_CPPFLAGS): New variable. diff --git a/src/Makefile.am b/src/Makefile.am index adcf028..e4d41a5 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -85,10 +85,10 @@ mkerrcodes.h: Makefile mkerrcodes.awk # It is correct to use $(CC_FOR_BUILD) here. We want to run the # program at build time. mkerrcodes: mkerrcodes.c mkerrcodes.h Makefile - $(CC_FOR_BUILD) -I. -I$(srcdir) -o $@ $< + $(CC_FOR_BUILD) -I. -I$(srcdir) -o $@ mkerrcodes.c code-from-errno.h: mkerrcodes Makefile - ./$< | $(AWK) -f $(srcdir)/mkerrcodes2.awk >$@ + ./mkerrcodes | $(AWK) -f $(srcdir)/mkerrcodes2.awk >$@ errnos-sym.h: Makefile mkstrtable.awk errnos.in $(AWK) -f $(srcdir)/mkstrtable.awk -v textidx=2 -v nogettext=1 \ |