From cc3b7dec98546f4b2950272d73c18becae44b571 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Mon, 19 Aug 2013 13:36:33 -0700 Subject: [PATCH] Meta/Make: prepend the canned settings to $O Otherwise "O= Meta/Make" will not be able to override them. --- Make | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Make b/Make index 0e40505817..ee4f266851 100755 --- a/Make +++ b/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 -- 2.11.4.GIT