From: Paul Floyd Date: Tue, 8 Jul 2025 06:14:56 +0000 (+0200) Subject: Fix VEX/useful/Makefile-vex X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=71c4e60d7576795942f65234bfcbaa484d21ef08;p=thirdparty%2Fvalgrind.git Fix VEX/useful/Makefile-vex This uses hard coded 'make' which may mean Solaris make or BSD make ratheer than the initial invokation (e.g., gmake or some other make that is not first inthe PATH). Use ${MAKE} instead so that the same make is used for the second invokation. --- diff --git a/VEX/useful/Makefile-vex b/VEX/useful/Makefile-vex index 637afc983..31eab20db 100644 --- a/VEX/useful/Makefile-vex +++ b/VEX/useful/Makefile-vex @@ -1,7 +1,7 @@ # Crude makefile to build the "vex" executable from test_main.c vex: test_main.c test_main.h ../pub/*.h ../priv/*.c ../priv/*.h - (cd ..; make -f Makefile-gcc) + (cd ..; ${MAKE} -f Makefile-gcc) cc -I../pub -o vex test_main.c ../libvex.a clean: