[Checkins] SVN: zc.recipe.cmmi/trunk/ Quote the `--prefix=` argument to allow for spaces in the location

Martijn Pieters cvs-admin at zope.org
Thu Sep 27 11:59:25 UTC 2012


Log message for revision 127897:
  Quote the `--prefix=` argument to allow for spaces in the location

Changed:
  U   zc.recipe.cmmi/trunk/CHANGES.txt
  U   zc.recipe.cmmi/trunk/src/zc/recipe/cmmi/__init__.py

-=-
Modified: zc.recipe.cmmi/trunk/CHANGES.txt
===================================================================
--- zc.recipe.cmmi/trunk/CHANGES.txt	2012-09-27 10:30:29 UTC (rev 127896)
+++ zc.recipe.cmmi/trunk/CHANGES.txt	2012-09-27 11:59:21 UTC (rev 127897)
@@ -1,6 +1,11 @@
 Release History
 ***************
 
+1.4.0 (unreleased)
+==================
+
+- Fixed: Spaces weren't allowed in the installation location.
+
 1.3.5 (2011-08-06)
 ==================
 

Modified: zc.recipe.cmmi/trunk/src/zc/recipe/cmmi/__init__.py
===================================================================
--- zc.recipe.cmmi/trunk/src/zc/recipe/cmmi/__init__.py	2012-09-27 10:30:29 UTC (rev 127896)
+++ zc.recipe.cmmi/trunk/src/zc/recipe/cmmi/__init__.py	2012-09-27 11:59:21 UTC (rev 127897)
@@ -215,7 +215,7 @@
         """
         options = self.configure_options
         if options is None:
-            options = '--prefix=%s' % dest
+            options = '--prefix="%s"' % dest
         if self.extra_options:
             options += ' %s' % self.extra_options
         system("%s %s" % (self.configure_cmd, options))



More information about the checkins mailing list