Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

configure: Stray unquoted space in a sed expression

Should fix SDL builds where --static-libs are not present

Change-Id: I96056f3e4d9a4ae971ad2d9e792ba542478f331b

+3 -1
+3 -1
tools/configure
··· 435 435 else 436 436 echo "Your sdl-config does not know about static libs, falling back to shared library" 437 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 441 fi 440 442 GCCOPTS="$GCCOPTS ${sdlccopts}" 441 443 LDOPTS="$LDOPTS ${sdlldopts}"