Fixed support for spaces in matiec libraries path with native beremiz build
authorEdouard Tisserant
Sun, 16 Mar 2014 18:39:16 +0100
changeset 1398 340a01ff9749
parent 1397 21a2ea65cb30
child 1399 4c130dba8366
Fixed support for spaces in matiec libraries path with native beremiz build
ProjectController.py
--- a/ProjectController.py	Tue Mar 04 02:18:11 2014 +0100
+++ b/ProjectController.py	Sun Mar 16 18:39:16 2014 +0100
@@ -668,7 +668,7 @@
         # Keep track of generated C files for later use by self.CTNGenerate_C
         self.PLCGeneratedCFiles = C_files
         # compute CFLAGS for plc
-        self.plcCFLAGS = "-I"+self.ieclib_path
+        self.plcCFLAGS = '"-I%s"'%self.ieclib_path
         return True
 
     def GetBuilder(self):