Browse Source

Meta/Make: prepend the canned settings to $O

Otherwise "O=<some custom settings> Meta/Make" will not be able to
override them.
todo
Junio C Hamano 12 years ago
parent
commit
cc3b7dec98
  1. 6
      Make

6
Make

@ -113,9 +113,9 @@ do @@ -113,9 +113,9 @@ do
case "$NO_PEDANTIC" in
?*) ;;
'')
O="$O -Werror $(old_style_def_fix) -std=c99"
O="$O -Wno-pointer-to-int-cast"
O="$O -Wpointer-arith -Woverflow -Wunused"
O="-Werror $(old_style_def_fix) -std=c99 $O"
O="-Wno-pointer-to-int-cast $O"
O="-Wpointer-arith -Woverflow -Wunused $O"
;;
esac
# -Wvla

Loading…
Cancel
Save