fix --rbdir is ignored in configure

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28629 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Teruaki Kawashima 2010-11-21 14:31:19 +00:00
parent 3cebd7a735
commit 572c6eeb29

11
tools/configure vendored
View file

@ -102,10 +102,10 @@ app_get_platform() {
bindir="$ARG_PREFIX/bin"
libdir="$ARG_PREFIX/lib"
else
echo "ERROR: PREFIX does not does not exist"
echo "ERROR: PREFIX does not exist"
exit
fi
fi
fi
output="rockbox"
bootoutput="rockbox"
elif [ "$app_platform" = "android" ]; then
@ -3120,6 +3120,13 @@ else
fi
if [ "$ARG_RBDIR" ]; then
if [ "$need_full_path" != "yes" ]; then
if [ -z `echo $ARG_RBDIR | grep '^/'` ]; then
rbdir="/"$ARG_RBDIR
else
rbdir=$ARG_RBDIR
fi
fi
echo "Using alternate rockbox dir: ${rbdir}"
fi