From d49962359ac4fcc4fba29e62f27c2c3c081d864b Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 1 Mar 2014 11:39:39 -0800 Subject: [PATCH] Fixed test for libuuid.a --- configure | 2 +- configure.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index be5648476a0d5..0d00f63599484 100755 --- a/configure +++ b/configure @@ -22808,7 +22808,7 @@ $as_echo "#define SDL_LOADSO_WINDOWS 1" >>confdefs.h have_loadso=yes fi # Set up the system libraries we need - if -f /lib/w32api/libuuid.a ; then + if test -f /lib/w32api/libuuid.a; then LIBUUID=/lib/w32api/libuuid.a else LIBUUID=-luuid diff --git a/configure.in b/configure.in index 2decb13734dfc..98edcf8f2d407 100644 --- a/configure.in +++ b/configure.in @@ -2860,7 +2860,7 @@ AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[defau have_loadso=yes fi # Set up the system libraries we need - if [ -f /lib/w32api/libuuid.a ]; then + if test -f /lib/w32api/libuuid.a; then LIBUUID=/lib/w32api/libuuid.a else LIBUUID=-luuid