diff options
author | Marcus Brinkmann <[email protected]> | 2004-06-08 18:54:28 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2004-06-08 18:54:28 +0000 |
commit | 9eca8a577c00b28055d5f91517334d342d81cb34 (patch) | |
tree | 901682f565af620e4b32759ba8af1ace94b76b7e /src | |
parent | 2004-05-25 Marcus Brinkmann <[email protected]> (diff) | |
download | libgpg-error-9eca8a577c00b28055d5f91517334d342d81cb34.tar.gz libgpg-error-9eca8a577c00b28055d5f91517334d342d81cb34.zip |
2004-06-08 Marcus Brinkmann <[email protected]>
* src/Makefile.am (mkerrcodes): Prefix mkerrcodes.c with $(srcdir)
to fix VPATH build.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
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 >$@ |