From e6a8d841217f651e86c8e133e0edbbb667c11055 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Fri, 15 Nov 2013 14:43:45 -0500 Subject: [PATCH] fix: lttng-gen-tp: add missing spaces around flags Signed-off-by: Mathieu Desnoyers --- tools/lttng-gen-tp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 = "" -- 2.34.1