aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarcus Brinkmann <[email protected]>2004-04-23 12:43:50 +0000
committerMarcus Brinkmann <[email protected]>2004-04-23 12:43:50 +0000
commitf960344ac8c5befd2b23bab823cedd793886519c (patch)
tree0e46b7013ed2fdf92585b88121b086dafdc2eda2 /src
parent2004-04-22 Marcus Brinkmann <[email protected]> (diff)
downloadlibgpg-error-f960344ac8c5befd2b23bab823cedd793886519c.tar.gz
libgpg-error-f960344ac8c5befd2b23bab823cedd793886519c.zip
2004-04-23 Marcus Brinkmann <[email protected]>
* src/Makefile.am (mkerrcodes): Do not use $< in non-inference rule. (code-from-errno.h): Likewise.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am4
1 files changed, 2 insertions, 2 deletions
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 \