From dfa88263cc14789a6fd0abfcfb9140d91ab89458 Mon Sep 17 00:00:00 2001 From: "Gustavo J. A. M. Carneiro" Date: Wed, 19 Nov 2008 18:23:22 +0000 Subject: [PATCH] fix --with-pybindgen path handling bug --- bindings/python/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/wscript b/bindings/python/wscript index 0c6a3d55c..db0f71b7f 100644 --- a/bindings/python/wscript +++ b/bindings/python/wscript @@ -143,7 +143,7 @@ def configure(conf): no_net = False if Params.g_options.with_pybindgen: - conf.env['WITH_PYBINDGEN'] = Params.g_options.with_pybindgen + conf.env['WITH_PYBINDGEN'] = os.path.abspath(Params.g_options.with_pybindgen) no_net = True if Params.g_options.pybindgen_checkout: