From a40ac543e9869bfcbf74bb627166533386d60686 Mon Sep 17 00:00:00 2001 From: bryan Date: Sun, 27 Jul 2025 00:05:03 -0400 Subject: [PATCH] Use default CFLAGS --- openwrtbuilder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openwrtbuilder b/openwrtbuilder index 303739f..8e2d8e7 100755 --- a/openwrtbuilder +++ b/openwrtbuilder @@ -592,7 +592,7 @@ from_source() { ((DEBUG)) && make_opts+=("-j1") || make_opts+=("-j$(($(nproc)-1))") # Make image - if ! execute ionice -c 3 chrt --idle 0 nice -n19 make HOST_CFLAGS="-std=c17" "${make_opts[@]}" world; then + if ! execute ionice -c 3 chrt --idle 0 nice -n19 make "${make_opts[@]}" world; then echo "Error: make failed" return 1 fi