Browse Source

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
tags/1.9.9.5
Adrian Knoth 13 years ago
parent
commit
ad01143310
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      wscript

+ 1
- 1
wscript View File

@@ -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):


Loading…
Cancel
Save