Bläddra i källkod

Use CFLAGS in make

bryan 6 dagar sedan
förälder
incheckning
06a3209046
1 ändrade filer med 1 tillägg och 2 borttagningar
  1. 1 2
      openwrtbuilder

+ 1 - 2
openwrtbuilder

@@ -592,8 +592,7 @@ from_source() {
   ((DEBUG)) && make_opts+=("-j1") || make_opts+=("-j$(($(nproc)-1))")
 
   # Make image
-  declare -x HOST_CFLAGS="-std=c17"
-  if ! execute ionice -c 3 chrt --idle 0 nice -n19 make "${make_opts[@]}" world; then
+  if ! execute ionice -c 3 chrt --idle 0 nice -n19 make HOST_CFLAGS="-std=c17" "${make_opts[@]}" world; then
     echo "Error: make failed"
     return 1
   fi