From 3e9ca6ec8ed5d452db482ae3cffb66e5330ec244 Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Thu, 4 Jul 2024 10:38:49 -0400 Subject: configure: Stray unquoted space in a sed expression Should fix SDL builds where --static-libs are not present Change-Id: I96056f3e4d9a4ae971ad2d9e792ba542478f331b --- tools/configure | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/configure b/tools/configure index 1bc64484f0..04699cb3e4 100755 --- a/tools/configure +++ b/tools/configure @@ -435,7 +435,9 @@ simcc () { else echo "Your sdl-config does not know about static libs, falling back to shared library" sdlldopts=$($sdl --libs) - LDOPTS=`echo $LDOPTS | sed -e s/ -static//` +# if [ "$win32crosscompile" = "yes" ] ; then + LDOPTS=`echo $LDOPTS | sed -e s/-static//` +# fi fi GCCOPTS="$GCCOPTS ${sdlccopts}" LDOPTS="$LDOPTS ${sdlldopts}" -- cgit v1.2.3