pybindgen required version is now a string literal, not a tuple
authorTom Henderson <tomh@tomh.org>
Mon, 21 Sep 2015 10:21:07 -0700
changeset 11672 51263c7e64bb
parent 11671 dbd1a2b1c4ed
child 11673 ea9789e18a84
pybindgen required version is now a string literal, not a tuple
bindings/python/wscript
--- a/bindings/python/wscript	Tue Sep 15 13:50:46 2015 -0700
+++ b/bindings/python/wscript	Mon Sep 21 10:21:07 2015 -0700
@@ -152,7 +152,7 @@
     else:
         # ns-3-dev uses ../pybindgen, while ns-3 releases use ../REQUIRED_PYBINDGEN_VERSION
         pybindgen_dir = os.path.join('..', "pybindgen")
-        pybindgen_release_str = "pybindgen-" + '.'.join([str(x) for x in REQUIRED_PYBINDGEN_VERSION])
+        pybindgen_release_str = "pybindgen-" + REQUIRED_PYBINDGEN_VERSION
         pybindgen_release_dir = os.path.join('..', pybindgen_release_str)
         if os.path.isdir(pybindgen_dir):
             conf.msg("Checking for pybindgen location", ("%s (guessed)" % pybindgen_dir))