aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2010-03-10 10:57:03 +0000
committerMax Horn2010-03-10 10:57:03 +0000
commitae3cf39763aef27f73bdf97b591896cac9f26ffc (patch)
tree9c7dffb46dc60f027a212cbbaa42ecb659342880
parent65585f643375e71d21d1c33e7c2f9a118897837d (diff)
downloadscummvm-rg350-ae3cf39763aef27f73bdf97b591896cac9f26ffc.tar.gz
scummvm-rg350-ae3cf39763aef27f73bdf97b591896cac9f26ffc.tar.bz2
scummvm-rg350-ae3cf39763aef27f73bdf97b591896cac9f26ffc.zip
Patch #2967256: Bashisms in configure break build on Solaris
svn-id: r48219
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 524698dfd9..07a5424c56 100755
--- a/configure
+++ b/configure
@@ -902,7 +902,7 @@ psp)
_host_cpu=mipsallegrexel
_host_alias=psp
if test -z "$PSPDEV"; then
- PSPDEV=$(psp-config --pspdev-path)
+ PSPDEV=`psp-config --pspdev-path`
fi
if test -d "$PSPDEV/psp/lib"; then
LDFLAGS="$LDFLAGS -L$PSPDEV/psp/lib"
@@ -996,7 +996,7 @@ ps2)
fi
;;
psp)
- PSPSDK=$(psp-config --pspsdk-path)
+ PSPSDK=`psp-config --pspsdk-path`
if test -z "$PSPSDK"; then
echo "Please set the path to PSPSDK in your environment."
exit 1
@@ -2300,7 +2300,7 @@ case $_backend in
DEFINES="$DEFINES -D__PSP__ -DDISABLE_TEXT_CONSOLE -DDISABLE_COMMAND_LINE -DDISABLE_DOSBOX_OPL"
INCLUDES="$INCLUDES -I$PSPDEV/psp/include/SDL"
LIBS="$LIBS -lpng -lSDL -Wl,-Map,mapfile.txt"
- SDLLIBS=$($PSPDEV/psp/bin/sdl-config --libs)
+ SDLLIBS=`$PSPDEV/psp/bin/sdl-config --libs`
if `echo "$SDLLIBS" | grep ".*-lGL.*" 1>/dev/null 2>&1`
then