diff options
author | David Robillard <d@drobilla.net> | 2013-12-25 20:15:08 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-12-25 20:15:08 +0000 |
commit | 317278a0d0317bacde44aa887e6309b4c679ac79 (patch) | |
tree | 930abb16488c93c66145d855bef6114791edb964 | |
parent | 5254f28fe0aa3c724e44e900835bbfd8fe00318b (diff) | |
download | suil-317278a0d0317bacde44aa887e6309b4c679ac79.tar.gz suil-317278a0d0317bacde44aa887e6309b4c679ac79.tar.bz2 suil-317278a0d0317bacde44aa887e6309b4c679ac79.zip |
Load waf modules before everything else so CFLAGS and friends are correct (oops).
git-svn-id: http://svn.drobilla.net/lad/trunk/suil@5204 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -31,9 +31,9 @@ def options(opt): help="Gtk2 library name [Default: libgtk-x11-2.0.so.0]") def configure(conf): + conf.line_just = 40 conf.load('compiler_c') conf.load('compiler_cxx') - conf.line_just = 40 autowaf.configure(conf) autowaf.set_c99_mode(conf) autowaf.display_header('Suil Configuration') |