summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-12-25 20:15:08 +0000
committerDavid Robillard <d@drobilla.net>2013-12-25 20:15:08 +0000
commit55742a8cbaaa3650dcde172827b6ccff32c703ea (patch)
treec0929969c1769078a65ffedf1cdf304fe266e27d /wscript
parente17310e829107095d451b8b123604d10bf8158bc (diff)
downloadpatchage-55742a8cbaaa3650dcde172827b6ccff32c703ea.tar.gz
patchage-55742a8cbaaa3650dcde172827b6ccff32c703ea.tar.bz2
patchage-55742a8cbaaa3650dcde172827b6ccff32c703ea.zip
Load waf modules before everything else so CFLAGS and friends are correct (oops).
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@5204 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index 49e73b0..e7bcd6b 100644
--- a/wscript
+++ b/wscript
@@ -39,8 +39,8 @@ def options(opt):
help='Do not try to read files from executable location')
def configure(conf):
- conf.load('compiler_cxx')
conf.line_just = 44
+ conf.load('compiler_cxx')
autowaf.configure(conf)
autowaf.display_header('Patchage Configuration')