1
mirror of https://github.com/mpv-player/mpv synced 2024-08-04 14:59:58 +02:00

Print CFLAGS warning last so nobody can miss it.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15957 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2005-07-10 17:01:49 +00:00
parent 90889fb90d
commit c89f7cd736

24
configure vendored
View File

@ -6655,16 +6655,7 @@ elif test -z "$CFLAGS" ; then
_stripbinaries=no
fi
else
cat <<EOF
MPlayer compilation will use the CFLAGS set by you, but:
*** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
It is strongly recommended to let MPlayer choose the correct CFLAGS!
To do so, execute 'CFLAGS= ./configure <options>'
EOF
_warn_CFLAGS=yes
fi
echocheck "automatic gdb attach"
@ -7837,5 +7828,18 @@ Have a look at the documentation for supported cards!
EOF
fi
if test "$_warn_CFLAGS" = yes; then
cat <<EOF
MPlayer compilation will use the CFLAGS set by you, but:
*** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
It is strongly recommended to let MPlayer choose the correct CFLAGS!
To do so, execute 'CFLAGS= ./configure <options>'
EOF
fi
# Last move:
rm -f "$TMPO" "$TMPC" "$TMPS" "$TMPCPP"