From: Mathieu Desnoyers Date: Fri, 15 Nov 2013 19:43:45 +0000 (-0500) Subject: fix: lttng-gen-tp: add missing spaces around flags X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=e6a8d841217f651e86c8e133e0edbbb667c11055;p=deliverable%2Flttng-ust.git fix: lttng-gen-tp: add missing spaces around flags Signed-off-by: Mathieu Desnoyers --- diff --git a/tools/lttng-gen-tp b/tools/lttng-gen-tp index ed0c48fa..0f6f0b58 100755 --- a/tools/lttng-gen-tp +++ b/tools/lttng-gen-tp @@ -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 = ""