From d6cb9069f83e5e0444c702733dc5b2d89add0894 Mon Sep 17 00:00:00 2001 From: Sammi Johnson Date: Fri, 6 Mar 2026 10:44:04 +0100 Subject: [PATCH] fix CCFLAGS envvar typo in compile-all --- compile-all | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/compile-all b/compile-all index c495375..72600e9 100755 --- a/compile-all +++ b/compile-all @@ -130,10 +130,10 @@ cd tools-make # make distclean if $USING_GCC; then echo "==== BUILDING WITH GCC" - echo "Build command: CCFLAGS=$cc_flags CC=$CC ./configure --prefix=${prefix} --with-library-combo=gnu-gnu-gnu --with-layout=gnustep $make_flags" + echo "Build command: CFLAGS=$cc_flags CC=$CC ./configure --prefix=${prefix} --with-library-combo=gnu-gnu-gnu --with-layout=gnustep $make_flags" echo "====" - CCFLAGS=$cc_flags CXX=$CXX CC=$CC ./configure --prefix=${prefix} --with-library-combo=gnu-gnu-gnu --with-layout=gnustep ${make_flags} + CFLAGS=$cc_flags CXX=$CXX CC=$CC ./configure --prefix=${prefix} --with-library-combo=gnu-gnu-gnu --with-layout=gnustep ${make_flags} else echo "==== BUILDING WITH CLANG" unset CC @@ -144,8 +144,8 @@ else export CXX=${cxxcompiler} # export LDFLAGS=-ldispatch echo "LDFLAGS=$LDFLAGS" - echo "Build command: CCFLAGS=${cc_flags} CXX=${CXX} CC=${CC} ./configure --prefix=${prefix} --with-library-combo=ng-gnu-gnu --enable-objc-arc --enable-native-objc-exceptions --with-layout=gnustep ${make_flags}" - CCFLAGS=${cc_flags} CXX=${CXX} CC=${CC} ./configure --prefix=${prefix} --with-library-combo=ng-gnu-gnu --enable-objc-arc --enable-native-objc-exceptions --with-layout=gnustep ${make_flags} + echo "Build command: CFLAGS=${cc_flags} CXX=${CXX} CC=${CC} ./configure --prefix=${prefix} --with-library-combo=ng-gnu-gnu --enable-objc-arc --enable-native-objc-exceptions --with-layout=gnustep ${make_flags}" + CFLAGS=${cc_flags} CXX=${CXX} CC=${CC} ./configure --prefix=${prefix} --with-library-combo=ng-gnu-gnu --enable-objc-arc --enable-native-objc-exceptions --with-layout=gnustep ${make_flags} fi # Install make after configuration...