diff options
author | D G Turner | 2014-05-20 19:29:55 +0100 |
---|---|---|
committer | D G Turner | 2014-05-20 19:29:55 +0100 |
commit | d0c363524451fbdeee7459ca544eb26f20b4d789 (patch) | |
tree | 929518210063179f30ff5b150a3d9728e3a7254a | |
parent | e89b0fd4393be93e79095f87d6ce3a1ca2c8d849 (diff) | |
download | scummvm-rg350-d0c363524451fbdeee7459ca544eb26f20b4d789.tar.gz scummvm-rg350-d0c363524451fbdeee7459ca544eb26f20b4d789.tar.bz2 scummvm-rg350-d0c363524451fbdeee7459ca544eb26f20b4d789.zip |
CONFIGURE: Fix information output for host-alias-strings test.
Thanks to LordHoto for the amendment to surpress error output.
-rwxr-xr-x | configure | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1843,10 +1843,13 @@ if test "$_global_constructors" = yes; then fi echo $_global_constructors -if test ! "x$(which $_host_alias-strings)" = "x"; then +echo_n "Checking for $_host_alias-strings... " +if test ! "x$(which $_host_alias-strings 2>/dev/null)" = "x"; then _strings=$_host_alias-strings +echo yes else _strings=strings +echo no fi # |