summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-07-01 22:19:57 +0000
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-11-02 04:14:20 +0200
commite9a53cd1e98966e64a7decf12a682e19c4961fad (patch)
tree91bdad8e3a23728a36ced40e7c647591a1c5b3bf /configure
parent96b385bc793a0fb7f734e6d4dd4e6a4921abd218 (diff)
downloadmpv-e9a53cd1e98966e64a7decf12a682e19c4961fad.tar.bz2
mpv-e9a53cd1e98966e64a7decf12a682e19c4961fad.tar.xz
configure: Rename _warn_CFLAGS variable to warn_cflags.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31612 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure10
1 files changed, 5 insertions, 5 deletions
diff --git a/configure b/configure
index 7114df3245..00f7446cec 100755
--- a/configure
+++ b/configure
@@ -2422,7 +2422,7 @@ elif test -z "$CFLAGS" ; then
extra_ldflags="$extra_ldflags -ffast-math"
fi
else
- _warn_CFLAGS=yes
+ warn_cflags=yes
fi
cat > $TMPC << EOF
@@ -2445,13 +2445,13 @@ cc_check -MD -MP && CFLAGS="-MD -MP $CFLAGS"
if test -n "$LDFLAGS" ; then
extra_ldflags="$extra_ldflags $LDFLAGS"
- _warn_CFLAGS=yes
+ warn_cflags=yes
elif test "$cc_vendor" = "intel" ; then
extra_ldflags="$extra_ldflags -i-static"
fi
if test -n "$CPPFLAGS" ; then
extra_cflags="$extra_cflags $CPPFLAGS"
- _warn_CFLAGS=yes
+ warn_cflags=yes
fi
@@ -2590,7 +2590,7 @@ if test -z "$YASMFLAGS" ; then
*) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
esac
else
- _warn_CFLAGS=yes
+ warn_cflags=yes
fi
echo "pabsw xmm0, xmm0" > $TMPS
@@ -8525,7 +8525,7 @@ If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
EOF
-if test "$_warn_CFLAGS" = yes; then
+if test "$warn_cflags" = yes; then
cat <<EOF
MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,