From ad01143310eaeb0268f18348918997fca94dcec4 Mon Sep 17 00:00:00 2001 From: Adrian Knoth Date: Sun, 28 Oct 2012 13:04:37 +0100 Subject: [PATCH] wscript: Fix FTBFS with --mixed conf.write_config_header() defaults to remove=True, so conf.defines() is empty afterwards. Consequently, config.h is empty, too. Set remove to False, so calling it another time for 32_64 builds works. Closes: #21 --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index fafa14f8..ba5f26cb 100644 --- a/wscript +++ b/wscript @@ -228,7 +228,7 @@ def configure(conf): conf.define('USE_LIBDBUS_AUTOLAUNCH', 1) if conf.env['BUILD_WITH_PROFILE'] == True: conf.define('JACK_MONITOR', 1) - conf.write_config_header('config.h') + conf.write_config_header('config.h', remove=False) svnrev = None if os.access('svnversion.h', os.R_OK):