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 | 12434ef238e1ae6e19deeaf0c6fb31b6fa0fa18a (patch) | |
tree | 3d8f4203ffbfe3bc03c1ae49d504db662ee9ece0 /cpp/src | |
parent | c9edda1cf80b85c7d5d66e27bfede6ed3892ba0c (diff) | |
download | qpid-python-12434ef238e1ae6e19deeaf0c6fb31b6fa0fa18a.tar.gz |
Fix error in previous commit.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@524938 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/tests/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/tests/Makefile.am b/cpp/src/tests/Makefile.am index 5a64667f65..0dc6c3343e 100644 --- a/cpp/src/tests/Makefile.am +++ b/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; \ |