diff options
author | Werner Koch <[email protected]> | 2012-03-26 18:31:46 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2012-03-26 18:31:46 +0000 |
commit | e1367da57f805857f82e60dfb34563ce6cd41efd (patch) | |
tree | 3a6aeaf6b63dffdb8d421828d9627e7aeaf9f97a | |
parent | Update samplekeys and NEWS. (diff) | |
download | gnupg-e1367da57f805857f82e60dfb34563ce6cd41efd.tar.gz gnupg-e1367da57f805857f82e60dfb34563ce6cd41efd.zip |
Fix make rules for audit-events.h et al.
* common/Makefile.am (audit-events.h, status-codes.h): Fix target file
name.
-rw-r--r-- | common/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/Makefile.am b/common/Makefile.am index a830a47a5..75b4623a6 100644 --- a/common/Makefile.am +++ b/common/Makefile.am @@ -109,13 +109,13 @@ if MAINTAINER_MODE audit-events.h: Makefile mkstrtable.awk exaudit.awk audit.h $(AWK) -f $(srcdir)/exaudit.awk $(srcdir)/audit.h \ | $(AWK) -f $(srcdir)/mkstrtable.awk -v textidx=3 -v nogettext=1 \ - -v namespace=eventstr_ > $(srcdir)/$@ + -v namespace=eventstr_ > $(srcdir)/audit-events.h # Create the status-codes.h include file from status.h status-codes.h: Makefile mkstrtable.awk exstatus.awk status.h $(AWK) -f $(srcdir)/exstatus.awk $(srcdir)/status.h \ | $(AWK) -f $(srcdir)/mkstrtable.awk -v textidx=3 -v nogettext=1 \ - -v namespace=statusstr_ > $(srcdir)/$@ + -v namespace=statusstr_ > $(srcdir)/status-codes.h endif |