From 693db9aed2cc6dcc23c1f0bab488c5e83c8cc7a1 Mon Sep 17 00:00:00 2001 From: lhzw Date: Sun, 14 Feb 2016 07:36:20 +0800 Subject: [PATCH] ln -fs `pwd`/lib/libvnctpmd.so ../vnctpmd/test/vnctpmd.so ln -fs `pwd`/lib/libvnctptd.so ../vnctptd/test/vnctptd.so With prefix 'lib', python cannot import these module. --- vn.ctp/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vn.ctp/build.sh b/vn.ctp/build.sh index 15332fb6..df869a70 100755 --- a/vn.ctp/build.sh +++ b/vn.ctp/build.sh @@ -10,6 +10,6 @@ fi pushd $BUILDDIR cmake .. make VERBOSE=1 -j 2 -ln -fs `pwd`/lib/libvnctpmd.so ../vnctpmd/test -ln -fs `pwd`/lib/libvnctptd.so ../vnctptd/test +ln -fs `pwd`/lib/libvnctpmd.so ../vnctpmd/test/vnctpmd.so +ln -fs `pwd`/lib/libvnctptd.so ../vnctptd/test/vnctptd.so popd