# HG changeset patch
# User Edouard Tisserant
# Date 1394991556 -3600
# Node ID 340a01ff9749f5c00a9190172c3468702ab3cd37
# Parent  21a2ea65cb3022939a46b9017def30f66b1b8b31
Fixed support for spaces in matiec libraries path with native beremiz build

diff -r 21a2ea65cb30 -r 340a01ff9749 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):