diff options
author | Johannes Schickel | 2016-01-10 22:14:09 +0100 |
---|---|---|
committer | Johannes Schickel | 2016-01-10 22:14:09 +0100 |
commit | f146ef065dfb289f445b02cef123ab330f2ff84e (patch) | |
tree | 922eb5cdd95ea217db0905c1c6eca11031da2733 /configure | |
parent | 04760d3e2f9567938d59b33add2afc4ed42bde63 (diff) | |
download | scummvm-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-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |