# HG changeset patch # User Gustavo J. A. M. Carneiro # Date 1314358264 -3600 # Node ID 53b784adf3f4c63e4f47246136588f0e08f64101 # Parent 287082f2be5c9b452475337db58f9db706f4f68d Bug 1251 - OSX: test.py reports dyld: Library not loaded diff -r 287082f2be5c -r 53b784adf3f4 wscript --- a/wscript Thu Aug 25 19:24:06 2011 +0100 +++ b/wscript Fri Aug 26 12:31:04 2011 +0100 @@ -67,10 +67,10 @@ wutils.VERSION = VERSION wutils.APPNAME = APPNAME -if re.match(r"\d+\.\d+(\.\d+)?", VERSION) is not None: +# note: here we disable the VNUM for OSX since it causes problems (bug #1251) +wutils.VNUM = None +if sys.platform != 'darwin' and re.match(r"^\d+\.\d+(\.\d+)?$", VERSION) is not None: wutils.VNUM = VERSION -else: - wutils.VNUM = None # these variables are mandatory ('/' are converted automatically) srcdir = '.'