aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorJohannes Schickel2016-01-10 22:14:09 +0100
committerJohannes Schickel2016-01-10 22:14:09 +0100
commitf146ef065dfb289f445b02cef123ab330f2ff84e (patch)
tree922eb5cdd95ea217db0905c1c6eca11031da2733 /configure
parent04760d3e2f9567938d59b33add2afc4ed42bde63 (diff)
downloadscummvm-rg350-f146ef065dfb289f445b02cef123ab330f2ff84e.tar.gz
scummvm-rg350-f146ef065dfb289f445b02cef123ab330f2ff84e.tar.bz2
scummvm-rg350-f146ef065dfb289f445b02cef123ab330f2ff84e.zip
CONFIGURE: Fix missing variable access.
Ooops.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 19fc6df2cb..3ad30fef70 100755
--- a/configure
+++ b/configure
@@ -4047,7 +4047,7 @@ EOF
# Modern freetype-config scripts accept --static to get all
# required flags for static linking. We abuse this to detect
# FreeType2 builds which are static themselves.
- if test "_freetype2" != "yes"; then
+ if test "$_freetype2" != "yes"; then
FREETYPE2_LIBS=`$_freetypeconfig --prefix="$_freetypepath" --static --libs 2>/dev/null`
cc_check_no_clean $FREETYPE2_CFLAGS $FREETYPE2_LIBS && _freetype2=yes
fi