diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/Makefile.am | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2004-06-08 Marcus Brinkmann <[email protected]> + + * src/Makefile.am (mkerrcodes): Prefix mkerrcodes.c with $(srcdir) + to fix VPATH build. + 2004-05-25 Marcus Brinkmann <[email protected]> * src/err-codes.h.in: Add GPG_ERR_PROTOCOL_VIOLATION and diff --git a/src/Makefile.am b/src/Makefile.am index e4d41a5..1f3ae5b 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -85,7 +85,7 @@ 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 $@ mkerrcodes.c + $(CC_FOR_BUILD) -I. -I$(srcdir) -o $@ $(srcdir)/mkerrcodes.c code-from-errno.h: mkerrcodes Makefile ./mkerrcodes | $(AWK) -f $(srcdir)/mkerrcodes2.awk >$@ |