summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2024-07-04 10:38:49 -0400
committerSolomon Peachy <pizza@shaftnet.org>2024-07-04 10:38:49 -0400
commit3e9ca6ec8ed5d452db482ae3cffb66e5330ec244 (patch)
tree444f79a7d4c9eeba0e7d2229119e709ea165a0f2
parent5e13a1bb05e10339854ace5b5f64fcee99460712 (diff)
downloadrockbox-3e9ca6ec8ed5d452db482ae3cffb66e5330ec244.tar.gz
rockbox-3e9ca6ec8ed5d452db482ae3cffb66e5330ec244.zip
configure: Stray unquoted space in a sed expression
Should fix SDL builds where --static-libs are not present Change-Id: I96056f3e4d9a4ae971ad2d9e792ba542478f331b
-rwxr-xr-xtools/configure4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure
index 1bc64484f0..04699cb3e4 100755
--- a/tools/configure
+++ b/tools/configure
@@ -435,7 +435,9 @@ simcc () {
435 else 435 else
436 echo "Your sdl-config does not know about static libs, falling back to shared library" 436 echo "Your sdl-config does not know about static libs, falling back to shared library"
437 sdlldopts=$($sdl --libs) 437 sdlldopts=$($sdl --libs)
438 LDOPTS=`echo $LDOPTS | sed -e s/ -static//` 438# if [ "$win32crosscompile" = "yes" ] ; then
439 LDOPTS=`echo $LDOPTS | sed -e s/-static//`
440# fi
439 fi 441 fi
440 GCCOPTS="$GCCOPTS ${sdlccopts}" 442 GCCOPTS="$GCCOPTS ${sdlccopts}"
441 LDOPTS="$LDOPTS ${sdlldopts}" 443 LDOPTS="$LDOPTS ${sdlldopts}"