From 1b8f3300962a2ae549da59978364d837a232d38e Mon Sep 17 00:00:00 2001 From: Tony Kelman Date: Fri, 13 Mar 2015 18:13:58 -0700 Subject: [PATCH] Fix building libccalltest when USECCACHE=1 --- test/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Makefile b/test/Makefile index 257b530f03dbf..49ba8bce62739 100644 --- a/test/Makefile +++ b/test/Makefile @@ -19,7 +19,7 @@ clean: all ccall libccalltest: libccalltest.$(SHLIB_EXT) libccalltest.$(SHLIB_EXT): ccalltest.c - @$(call PRINT_CC, $(CC) $(CFLAGS) $(DEBUGFLAGS) -O3 $< $(fPIC) -shared -o $@ $(LDFLAGS) -DCC=$(CC)) + @$(call PRINT_CC, $(CC) $(CFLAGS) $(DEBUGFLAGS) -O3 $< $(fPIC) -shared -o $@ $(LDFLAGS) -DCC="$(CC)") ccalltest: ccalltest.c libccalltest.$(SHLIB_EXT) - @$(call PRINT_CC, $(CC) $(CFLAGS) $(DEBUGFLAGS) -O3 $< -o $@ $(LDFLAGS) -DCC=$(CC)) + @$(call PRINT_CC, $(CC) $(CFLAGS) $(DEBUGFLAGS) -O3 $< -o $@ $(LDFLAGS) -DCC="$(CC)")