fix: lttng-gen-tp: add missing spaces around flags
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Fri, 15 Nov 2013 19:43:45 +0000 (14:43 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Fri, 15 Nov 2013 19:43:45 +0000 (14:43 -0500)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
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.025447 seconds and 4 git commands to generate.