From fda662438e354c4512202b2ebf0f034f710cbdff Mon Sep 17 00:00:00 2001 From: "Gustavo J. A. M. Carneiro" Date: Tue, 12 Jul 2011 11:02:40 +0100 Subject: [PATCH] Bug 1200 again: fix pyext install path on fedora x86_64 --- bindings/python/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/wscript b/bindings/python/wscript index f8212b061..f0a84d51c 100644 --- a/bindings/python/wscript +++ b/bindings/python/wscript @@ -121,7 +121,7 @@ def configure(conf): pydir = conf.environ['PYTHONDIR'] else: (pydir,) = _get_python_variables(conf.env['PYTHON'], - ["get_python_lib(standard_lib=0, prefix=%r)" % conf.env['PREFIX']], + ["get_python_lib(plat_specific=1, standard_lib=0, prefix=%r)" % conf.env['PREFIX']], ['from distutils.sysconfig import get_python_lib']) if hasattr(conf, 'define'): # conf.define is added by the C tool, so may not exist conf.define('PYTHONDIR', pydir)