fix: lttng-gen-tp: add missing spaces around flags
[lttng-ust.git] / tools / lttng-gen-tp
index ed0c48fa549973f844e4001cb99adbc2b8325959..0f6f0b581aac010929e7a467ea762996212b3217 100755 (executable)
@@ -131,15 +131,15 @@ class ObjFile:
         if cc == "":
             raise RuntimeError("No C Compiler detected")
         if 'CPPFLAGS' in os.environ:
-            cppflags = os.environ['CPPFLAGS']
+            cppflags = os.environ['CPPFLAGS'] + " "
         else:
             cppflags = ""
         if 'CFLAGS' in os.environ:
-            cflags = os.environ['CFLAGS']
+            cflags = os.environ['CFLAGS'] + " "
         else:
             cflags = ""
         if 'LDFLAGS' in os.environ:
-            ldflags = os.environ['LDFLAGS']
+            ldflags = os.environ['LDFLAGS'] + " "
         else:
             ldflags = ""
 
This page took 0.023066 seconds and 4 git commands to generate.