summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/serf/serf/0002-SConstruct-Fix-path-quoting-for-.def-generator.patch
blob: cec881ee1c1d5ca89e3eb2012c26230b9b886190 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
From e51b4b37916dd20b13133cb7af16601b6bf3ace9 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Mon, 3 Sep 2018 10:54:54 -0700
Subject: [PATCH] SConstruct: Fix path quoting for .def generator

Patch by: Martin Keller <m.keller{_AT_}codesys.com>
Upstream-Status: Backport
[https://svn.apache.org/viewvc/serf/trunk/SConstruct?r1=1807594&r2=1809132]

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 SConstruct | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/SConstruct b/SConstruct
index 18a45fa..571bdce 100644
--- a/SConstruct
+++ b/SConstruct
@@ -160,7 +160,7 @@ env = Environment(variables=opts,
 
 env.Append(BUILDERS = {
     'GenDef' : 
-      Builder(action = sys.executable + ' build/gen_def.py $SOURCES > $TARGET',
+      Builder(action = '"%s" "%s" $SOURCES > $TARGET' % (sys.executable, gen_def_script,),
               suffix='.def', src_suffix='.h')
   })