mirror of
https://github.com/git/git.git
synced 2026-08-04 15:11:09 +00:00
Meta/Make: prepend the canned settings to $O
Otherwise "O=<some custom settings> Meta/Make" will not be able to override them.
This commit is contained in:
6
Make
6
Make
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user