diff options
author | Alan Conway <aconway@apache.org> | 2010-05-28 17:00:11 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2010-05-28 17:00:11 +0000 |
commit | 8d317104053b8258380c47af8d792517c4da10b7 (patch) | |
tree | a89ba4ae1dd4cdb56ecad612f33772284a31b86c /cpp/src/tests | |
parent | 1bcbf0ce82ae86c12857d7ee03a93d6399dd1a2b (diff) | |
download | qpid-python-8d317104053b8258380c47af8d792517c4da10b7.tar.gz |
Fixed conflicting clean-local targets, causing make distcheck to fail.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@949231 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests')
-rw-r--r-- | cpp/src/tests/Makefile.am | 5 | ||||
-rw-r--r-- | cpp/src/tests/ssl.mk | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/cpp/src/tests/Makefile.am b/cpp/src/tests/Makefile.am index b392a124d1..9a0fac9bbb 100644 --- a/cpp/src/tests/Makefile.am +++ b/cpp/src/tests/Makefile.am @@ -41,6 +41,7 @@ TESTS= EXTRA_DIST= CLEANFILES= LONG_TESTS= +CLEAN_LOCAL= # # Destination for intalled programs and tests defined here @@ -396,7 +397,9 @@ sasl_config: sasl_test_setup.sh sh $(srcdir)/sasl_test_setup.sh touch sasl_config +CLEAN_LOCAL += sasl_config + clean-local: - rm -rf sasl_config + rm -rf $(CLEAN_LOCAL) include testagent.mk diff --git a/cpp/src/tests/ssl.mk b/cpp/src/tests/ssl.mk index cb887c8fda..435db0c55b 100644 --- a/cpp/src/tests/ssl.mk +++ b/cpp/src/tests/ssl.mk @@ -19,5 +19,4 @@ TESTS+=ssl_test EXTRA_DIST+=ssl_test -clean-local: - rm -rf test_cert_db cert.password
\ No newline at end of file +CLEAN_LOCAL += test_cert_db cert.password |