]> spindle.queued.net Git - midori/commitdiff
Update WAF to 1.5.3 rv5749, fixing --destdir with relative paths
authorChristian Dywan <christian@twotoasts.de>
Thu, 19 Feb 2009 00:00:19 +0000 (01:00 +0100)
committerChristian Dywan <christian@twotoasts.de>
Thu, 19 Feb 2009 00:00:19 +0000 (01:00 +0100)
waf
wscript

diff --git a/waf b/waf
index a22ad09a741dadb0c3341468d8b636d1dc055f14..1c16d7f2db46247ad2b96dc829fd24e670634eaf 100755 (executable)
Binary files a/waf and b/waf differ
diff --git a/wscript b/wscript
index 9107e96f85b653f3e9f62f1c6582cd78be236b52..ca7f8fd9f87757eb93c3447ddc1f0803f75e772b 100644 (file)
--- a/wscript
+++ b/wscript
@@ -194,7 +194,7 @@ def configure (conf):
     if debug_level != 'none':
         if compiler == 'gcc':
             if debug_level == 'debug':
-                conf.env.append_value ('CCFLAGS', '-Wall -O0 -g')
+                conf.env.append_value ('CCFLAGS', '-Wall -O0 -g'.split ())
             elif debug_level == 'full':
                 # -Wdeclaration-after-statement
                 # -Wmissing-declarations -Wmissing-prototypes
@@ -209,7 +209,7 @@ def configure (conf):
                     '-Winline -Wformat-security '
                     '-Winit-self -Wmissing-include-dirs -Wundef '
                     '-Wmissing-format-attribute -Wnested-externs '
-                    '-DG_ENABLE_DEBUG')
+                    '-DG_ENABLE_DEBUG'.split ())
             else:
                 conf.env.append_value ('CCFLAGS', '-O2')
         else: