diff options
author | Stephen D. Huston <shuston@apache.org> | 2009-06-26 22:26:47 +0000 |
---|---|---|
committer | Stephen D. Huston <shuston@apache.org> | 2009-06-26 22:26:47 +0000 |
commit | 8ee91d113f20dd874beca66c40394d721ff66f7b (patch) | |
tree | 97466d8517a8cdbf7bbd3250834328c6bd83a57f | |
parent | 57fd0d6c7613851eb1f2ed3ed0db986683e7deb7 (diff) | |
download | qpid-python-8ee91d113f20dd874beca66c40394d721ff66f7b.tar.gz |
Take dirpath off of plugin name to load; fixes QPID-1959
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@788890 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | qpid/cpp/src/tests/ReplicationTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/src/tests/ReplicationTest.cpp b/qpid/cpp/src/tests/ReplicationTest.cpp index 08f662142f..38dc1a9e52 100644 --- a/qpid/cpp/src/tests/ReplicationTest.cpp +++ b/qpid/cpp/src/tests/ReplicationTest.cpp @@ -1,4 +1,4 @@ - /* +/* * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file @@ -47,7 +47,7 @@ QPID_AUTO_TEST_SUITE(ReplicationTestSuite) // The CMake-based build passes in the module suffix; if it's not there, this // is a Linux/UNIX libtool-based build. #if defined (QPID_MODULE_SUFFIX) -qpid::sys::Shlib plugin("../replicating_listener" QPID_MODULE_SUFFIX); +qpid::sys::Shlib plugin("replicating_listener" QPID_MODULE_SUFFIX); #else qpid::sys::Shlib plugin("../.libs/replicating_listener.so"); #endif |