changeset 5897:5b7b94b5c233

configure_flags needs to start with whitespace. Fixes build.
author Nils Gey <denemo@nilsgey.de>
date Sun, 21 Feb 2010 15:28:24 +0100
parents c5b8909ce0d4
children 3a02929ac701
files gub/specs/sqlite.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/gub/specs/sqlite.py	Sun Feb 21 15:32:53 2010 +0100
+++ b/gub/specs/sqlite.py	Sun Feb 21 15:28:24 2010 +0100
@@ -18,6 +18,6 @@
     license_files = ['%(srcdir)s/PUBLIC-DOMAIN']
 
 class Sqlite__mingw (Sqlite):
-    configure_flags = ('config_TARGET_EXEEXT=.exe '
+    configure_flags = (' config_TARGET_EXEEXT=.exe '
                 + Sqlite.configure_flags
                 .replace ('--enable-threadsafe', '--disable-threadsafe'))