diff options
author | Werner Koch <[email protected]> | 2012-05-08 13:14:58 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2012-05-08 13:14:58 +0000 |
commit | d800fa5ce6102e069305f8e1a5d55d18ac3a1993 (patch) | |
tree | bd4260fc868ea39bc1df23964e70bcbc2bc2fe92 | |
parent | agent: Fix deadlock in trustlist due to the switch to npth. (diff) | |
download | gnupg-d800fa5ce6102e069305f8e1a5d55d18ac3a1993.tar.gz gnupg-d800fa5ce6102e069305f8e1a5d55d18ac3a1993.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 b9cba1113..e0f4b8084 100644 --- a/common/Makefile.am +++ b/common/Makefile.am @@ -30,7 +30,7 @@ TESTS = $(jnlib_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 |