From: Paul Floyd Date: Tue, 8 Jul 2025 06:27:20 +0000 (+0200) Subject: Fix VEX/useful/Makefile-vex again X-Git-Tag: VALGRIND_3_26_0~325 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e6be4dcf0d816d808ba3e53ec5b6d572a718f731;p=thirdparty%2Fvalgrind.git Fix VEX/useful/Makefile-vex again Again a hard coded error, using cc. Replace that with ${CC} so that it uses the default system or user specified compiler. --- diff --git a/VEX/useful/Makefile-vex b/VEX/useful/Makefile-vex index 31eab20db..42d6d66eb 100644 --- a/VEX/useful/Makefile-vex +++ b/VEX/useful/Makefile-vex @@ -2,7 +2,7 @@ vex: test_main.c test_main.h ../pub/*.h ../priv/*.c ../priv/*.h (cd ..; ${MAKE} -f Makefile-gcc) - cc -I../pub -o vex test_main.c ../libvex.a + ${CC} -I../pub -o vex test_main.c ../libvex.a clean: rm -f vex ../priv/*.o