From cbfb3b3177fb8a33fa818fd9764910c90f4d4307 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Tue, 14 Jan 2014 10:00:08 -0500 Subject: [PATCH] Cleanup gen-tp: add quotes around AM_CC Would deal with spaces in the env. var. if there are any. It does not seem to be important in practice (currently), because automake seems to fail on CC including spaces at configure time. Signed-off-by: Mathieu Desnoyers --- doc/examples/gen-tp/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/examples/gen-tp/Makefile b/doc/examples/gen-tp/Makefile index 0fa757c1..5c2a78cd 100644 --- a/doc/examples/gen-tp/Makefile +++ b/doc/examples/gen-tp/Makefile @@ -45,7 +45,7 @@ sample.o: sample.c sample_tracepoint.h CPPFLAGS="$(CPPFLAGS) $(AM_CPPFLAGS)" \ CFLAGS="$(CFLAGS) $(AM_CFLAGS)" \ LDFLAGS="$(LDFLAGS) $(AM_LDFLAGS)" \ - CC=$(CC) \ + CC="$(CC)" \ $(LTTNG_GEN_TP_PATH)lttng-gen-tp -o $@ $< # The following rule can be used to generate all files instead of having one -- 2.34.1