From a45259b7833b4b3ca44e7a98a432bb7de2cc725d Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 18 Dec 2014 10:22:45 +0100 Subject: [PATCH] =?UTF-8?q?fix=20=E2=80=94optimize=20and=20=E2=80=94debug-?= =?UTF-8?q?symbols=20configure=20flags?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit “execv() arg 2 must contain only strings” --- wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wscript b/wscript index 67fc799763..65ec4da5d5 100644 --- a/wscript +++ b/wscript @@ -470,10 +470,10 @@ int main() { return 0; }''', break if prepend_opt_flags: - optimization_flags[:0] = [ flags_dict['full-optimization'] ] + optimization_flags[:0] = flags_dict['full-optimization'] if opt.debug_symbols: - optimization_flags += [ flags_dict['debuggable'] ] + optimization_flags += flags_dict['debuggable'] if opt.stl_debug: cxx_flags.append("-D_GLIBCXX_DEBUG")