diff options
author | Werner Koch <[email protected]> | 2012-05-08 13:14:58 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2012-05-08 14:02:54 +0000 |
commit | 3f75b9ca00fc24e35bd16e91b7b1b18616447ff2 (patch) | |
tree | b3764b7ae2a58832c3bd499669ad1a8046bc89e0 | |
parent | Fix copyright years. (diff) | |
download | gnupg-3f75b9ca00fc24e35bd16e91b7b1b18616447ff2.tar.gz gnupg-3f75b9ca00fc24e35bd16e91b7b1b18616447ff2.zip |
common: Remove generated files only during maintainer-clean.
* common/Makefile.am (CLEANFILES): Rename to MAINTAINERCLEANFILES.
--
In general this is not required because automake does this for files
in BUILT_SOURCES anyway. However, having them in CLEANFILES is wrong.
This is bug#1398.
-rw-r--r-- | common/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/Makefile.am b/common/Makefile.am index 75b4623a6..0864d11d0 100644 --- a/common/Makefile.am +++ b/common/Makefile.am @@ -27,7 +27,7 @@ TESTS = $(module_tests) BUILT_SOURCES = audit-events.h status-codes.h -CLEANFILES = audit-events.h status-codes.h +MAINTAINERCLEANFILES = audit-events.h status-codes.h AM_CPPFLAGS = -I$(top_srcdir)/gl -I$(top_srcdir)/intl |