mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
configure: Stray unquoted space in a sed expression
Should fix SDL builds where --static-libs are not present Change-Id: I96056f3e4d9a4ae971ad2d9e792ba542478f331b
This commit is contained in:
parent
5e13a1bb05
commit
3e9ca6ec8e
1 changed files with 3 additions and 1 deletions
2
tools/configure
vendored
2
tools/configure
vendored
|
@ -435,7 +435,9 @@ simcc () {
|
||||||
else
|
else
|
||||||
echo "Your sdl-config does not know about static libs, falling back to shared library"
|
echo "Your sdl-config does not know about static libs, falling back to shared library"
|
||||||
sdlldopts=$($sdl --libs)
|
sdlldopts=$($sdl --libs)
|
||||||
|
# if [ "$win32crosscompile" = "yes" ] ; then
|
||||||
LDOPTS=`echo $LDOPTS | sed -e s/-static//`
|
LDOPTS=`echo $LDOPTS | sed -e s/-static//`
|
||||||
|
# fi
|
||||||
fi
|
fi
|
||||||
GCCOPTS="$GCCOPTS ${sdlccopts}"
|
GCCOPTS="$GCCOPTS ${sdlccopts}"
|
||||||
LDOPTS="$LDOPTS ${sdlldopts}"
|
LDOPTS="$LDOPTS ${sdlldopts}"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue