testbot/testagentd: Use $(CC) rather than hardcoding gcc as the compiler.

Francois Gouget fgouget at codeweavers.com
Thu May 15 08:55:58 CDT 2014


$(CC) is standard and does not require the autoconf machinery.
---
 testbot/src/testagentd/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/testbot/src/testagentd/Makefile b/testbot/src/testagentd/Makefile
index 5a7b735..4f16f9c 100644
--- a/testbot/src/testagentd/Makefile
+++ b/testbot/src/testagentd/Makefile
@@ -9,11 +9,11 @@ windows: TestAgentd.exe
 
 
 $(builddir)/testagentd: testagentd.o platform_unix.o
-	gcc -o $@ $^
+	$(CC) -o $@ $^
 	strip $@
 
 .c.o:
-	gcc -Wall -g -c -o $@ $<
+	$(CC) -Wall -g -c -o $@ $<
 
 
 TestAgentd.exe: testagentd.obj platform_windows.obj
-- 
2.0.0.rc0




More information about the wine-patches mailing list