diff options
author | Alan Conway <aconway@apache.org> | 2007-04-02 21:57:29 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2007-04-02 21:57:29 +0000 |
commit | fc9cac14b0e3e3034ca03267e6a0e7b50d2db11f (patch) | |
tree | 9f96a387ad6fbe72e61397964f43736a673b4a06 /qpid/cpp/src | |
parent | 089b445c495439304be849bf3e9fa1628fe9bb36 (diff) | |
download | qpid-python-fc9cac14b0e3e3034ca03267e6a0e7b50d2db11f.tar.gz |
Fix error in previous commit.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@524938 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r-- | qpid/cpp/src/tests/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qpid/cpp/src/tests/Makefile.am b/qpid/cpp/src/tests/Makefile.am index 5a64667f65..0dc6c3343e 100644 --- a/qpid/cpp/src/tests/Makefile.am +++ b/qpid/cpp/src/tests/Makefile.am @@ -48,13 +48,13 @@ unit_tests = \ # Executables for client tests -client_test_exe = \ +testprogs = \ client_test \ echo_service \ topic_listener \ topic_publisher -noinst_PROGRAMS = $(client_test_exe) +noinst_PROGRAMS = $(testprogs) TESTS_ENVIRONMENT = VALGRIND=$(VALGRIND) srcdir=$(srcdir) @@ -91,7 +91,7 @@ lib_broker = $(abs_builddir)/../libqpidbroker.la gen.mk: Makefile.am ( \ - for i in $(client_exe_tests); do \ + for i in $(testprogs); do \ echo $${i}_SOURCES = $$i.cpp; \ echo $${i}_LDADD = '$$(lib_client) $$(lib_common) $$(extra_libs)'; \ done; \ |