diff options
author | Alan Conway <aconway@apache.org> | 2006-12-01 18:26:28 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2006-12-01 18:26:28 +0000 |
commit | 860316f364f36688baec1f9d2942f5014df17c24 (patch) | |
tree | 5e3cc75effedb906740e793cd4ba2eb2c8f142b9 /qpid/cpp/tests | |
parent | ce4548912ac509d7f32b8f2864130fdd96f793d3 (diff) | |
download | qpid-python-860316f364f36688baec1f9d2942f5014df17c24.tar.gz |
Fixed quoting error in tests/Makefile.am.
More svn:ignore properties.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@481333 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/tests')
-rw-r--r-- | qpid/cpp/tests/Makefile.am | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/qpid/cpp/tests/Makefile.am b/qpid/cpp/tests/Makefile.am index 5fe59fcffa..55c190600f 100644 --- a/qpid/cpp/tests/Makefile.am +++ b/qpid/cpp/tests/Makefile.am @@ -92,13 +92,12 @@ gen.mk: Makefile.am echo $${i}_LDADD = '$$(lib_client) $$(lib_common) $$(extra_libs)'; \ done; \ libs=; \ - pwd=`pwd`; \ for i in $(unit_tests); do \ libs="$$libs $${i}.la"; \ echo $${i}_la_SOURCES = $$i.cpp; \ echo $${i}_la_LIBADD = '$$(lib_common)'; \ echo $${i}_la_LIBADD += '$$(lib_broker) $$(extra_libs)'; \ - echo $${i}_la_LDFLAGS = '-module -rpath $$pwd'; \ + echo $${i}_la_LDFLAGS = "-module -rpath `pwd`"; \ done; \ echo "check_LTLIBRARIES =$$libs"; \ ) \ |