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.

Fix configure to always prepend a missing leading '/'. Also don't require perl regexp support as it's not necessary and not all grep installations support it.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27848 a1c6a512-1295-4272-9138-f99709370657

+1 -1
+1 -1
tools/configure
··· 3092 3092 if [ "$need_full_path" = "yes" ]; then 3093 3093 rbdir=`realpath $ARG_RBDIR` 3094 3094 else # prepend '/' if needed 3095 - if [ -z `echo $ARG_RBDIR | grep -P '/.*'` ]; then 3095 + if [ -z `echo $ARG_RBDIR | grep '^/'` ]; then 3096 3096 rbdir="/"$ARG_RBDIR 3097 3097 else 3098 3098 rbdir=$ARG_RBDIR