only apply gcc-maybe-uninitialized-warning.patch for nginx 1.4.1+.

This commit is contained in:
Yichun Zhang (agentzh) 2013-06-12 11:16:31 -07:00
parent bb367bc9e6
commit cef62e1aa8
1 changed files with 6 additions and 3 deletions

View File

@ -157,9 +157,12 @@ echo "$info_txt applying patches/nginx-$main_ver-invalid_referer_hash.patch for
patch -p1 < $root/patches/nginx-$main_ver-invalid_referer_hash.patch || exit 1
echo
echo "$info_txt applying patches/nginx-$main_ver-gcc-maybe-uninitialized-warning.patch for nginx"
patch -p1 < $root/patches/nginx-$main_ver-gcc-maybe-uninitialized-warning.patch
echo
answer=`$root/util/ver-ge "$main_ver" 1.4.1`
if [ "$answer" = "Y" ]; then
echo "$info_txt applying patches/nginx-$main_ver-gcc-maybe-uninitialized-warning.patch for nginx"
patch -p1 < $root/patches/nginx-$main_ver-gcc-maybe-uninitialized-warning.patch
echo
fi
rm -f *.patch || exit 1