git » libjio » commit 371a33e

tests: Fix the glob used for the python module

author Alberto Bertogli
2012-02-09 00:43:20 UTC
committer Alberto Bertogli
2012-02-09 00:44:11 UTC
parent 1e8afd736112cc238b6937f67efdf5a7e0c1270e

tests: Fix the glob used for the python module

Signed-off-by: Alberto Bertogli <albertito@blitiri.com.ar>

tests/util/wrap-python +1 -1

diff --git a/tests/util/wrap-python b/tests/util/wrap-python
index 930c139..629a45b 100755
--- a/tests/util/wrap-python
+++ b/tests/util/wrap-python
@@ -34,7 +34,7 @@ os.environ["LD_LIBRARY_PATH"] = ":".join([lib_path, \
 # Find out the corresponding module path for the desired python version. The
 # path must be absolute
 mod_bins = glob.glob(os.path.dirname(sys.argv[0]) +
-			"/../../bindings/python/build/lib*-%s.*/libjio.so" \
+			"/../../bindings/python/build/lib*-%s.*/libjio*.so" \
 				% py_ver)
 if not mod_bins:
 	sys.stderr.write(("Can't find python%s bindings, run " +