You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@serf.apache.org by rh...@apache.org on 2017/09/21 08:55:11 UTC

svn commit: r1809132 - /serf/trunk/SConstruct

Author: rhuijben
Date: Thu Sep 21 08:55:11 2017
New Revision: 1809132

URL: http://svn.apache.org/viewvc?rev=1809132&view=rev
Log:
* SConstruct
  Fix path quoting for .def generator
  
Patch by: Martin Keller <m.keller{_AT_}codesys.com>

Modified:
    serf/trunk/SConstruct

Modified: serf/trunk/SConstruct
URL: http://svn.apache.org/viewvc/serf/trunk/SConstruct?rev=1809132&r1=1809131&r2=1809132&view=diff
==============================================================================
--- serf/trunk/SConstruct (original)
+++ serf/trunk/SConstruct Thu Sep 21 08:55:11 2017
@@ -175,7 +175,7 @@ gen_def_script = env.File('build/gen_def
 
 env.Append(BUILDERS = {
     'GenDef' :
-      Builder(action = sys.executable + ' %s $SOURCES > $TARGET' % (gen_def_script,),
+      Builder(action = '"%s" "%s" $SOURCES > $TARGET' % (sys.executable, gen_def_script,),
               suffix='.def', src_suffix='.h')
   })