[Scummvm-cvs-logs] SF.net SVN: scummvm:[48219] scummvm/trunk/configure

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Wed Mar 10 11:57:03 CET 2010


Revision: 48219
          http://scummvm.svn.sourceforge.net/scummvm/?rev=48219&view=rev
Author:   fingolfin
Date:     2010-03-10 10:57:03 +0000 (Wed, 10 Mar 2010)

Log Message:
-----------
Patch #2967256: Bashisms in configure break build on Solaris

Modified Paths:
--------------
    scummvm/trunk/configure

Modified: scummvm/trunk/configure
===================================================================
--- scummvm/trunk/configure	2010-03-10 06:39:23 UTC (rev 48218)
+++ scummvm/trunk/configure	2010-03-10 10:57:03 UTC (rev 48219)
@@ -902,7 +902,7 @@
 	_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 @@
 	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 @@
 		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


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list