From 2f113db65cb0378b92b83369606a53c975572931 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 5 Jun 2019 20:15:43 +0200 Subject: Fix SUIL_MODULE_DIR on Windows --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index 8afa645..0823980 100644 --- a/wscript +++ b/wscript @@ -98,7 +98,7 @@ def configure(conf): mandatory = False) autowaf.define(conf, 'SUIL_MODULE_DIR', - os.path.join(conf.env.LIBDIR, 'suil-' + SUIL_MAJOR_VERSION)) + conf.env.LIBDIR + '/suil-' + SUIL_MAJOR_VERSION) autowaf.define(conf, 'SUIL_DIR_SEP', '/') autowaf.define(conf, 'SUIL_GTK2_LIB_NAME', conf.options.gtk2_lib_name); autowaf.define(conf, 'SUIL_GTK3_LIB_NAME', conf.options.gtk3_lib_name); -- cgit v1.2.1