Correct two problems slipped in with r28753. Thanks Teru for spotting.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28757 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
b1a888a023
commit
13601883d5
1 changed files with 6 additions and 1 deletions
7
tools/configure
vendored
7
tools/configure
vendored
|
@ -3150,6 +3150,11 @@ else
|
|||
fi
|
||||
|
||||
if [ "$ARG_RBDIR" != "" ]; then
|
||||
if [ -z `echo $ARG_RBDIR | grep '^/'` ]; then
|
||||
rbdir="/"$ARG_RBDIR
|
||||
else
|
||||
rbdir=$ARG_RBDIR
|
||||
fi
|
||||
echo "Using alternate rockbox dir: ${rbdir}"
|
||||
fi
|
||||
|
||||
|
@ -3399,7 +3404,7 @@ export ENCODER=@ENCODER@
|
|||
export USE_ELF=@USE_ELF@
|
||||
export RBDIR=@RBDIR@
|
||||
export ROCKBOX_SHARE_PATH=@sharepath@
|
||||
export ROCKBOX_LIBRARY_PATH=@libpath@
|
||||
export ROCKBOX_BINARY_PATH=@binpath@
|
||||
export ROCKBOX_LIBRARY_PATH=@libpath@
|
||||
export SDLCONFIG=@SDLCONFIG@
|
||||
|
||||
|
|
Loading…
Reference in a new issue