summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-05-30 00:31:39 +0100
committerCarl Hetherington <cth@carlh.net>2013-05-30 00:31:39 +0100
commit3d8c5e91bd8616bfd76a9222e61b6f734a26bfae (patch)
tree1ad859acdd5c50837e6ff269de433ab4fc398cd2
parent72a10ac3733581448f791626cfb9b2105fd62c7f (diff)
Quotation fixes.
-rwxr-xr-xcdist4
1 files changed, 2 insertions, 2 deletions
diff --git a/cdist b/cdist
index 10965d6..80c63a6 100755
--- a/cdist
+++ b/cdist
@@ -339,8 +339,8 @@ def prepare_for_windows(env, bits):
for p in mingw_prefixes:
cxx += ' -I%s/include' % p
link += ' -L%s/lib' % p
- env.set('CXXFLAGS', cxx)
- env.set('LINKFLAGS', link)
+ env.set('CXXFLAGS', '"%s"' % cxx)
+ env.set('LINKFLAGS', '"%s"' % link)
#