When rockboxdev.sh temporarily adds $bindir to the PATH (so the gcc build can find the matching binutils), put it at the start, just in case the user has an old (and incompatible) target-binutils around.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20346 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
ac7c88b935
commit
57ce975cfb
1 changed files with 1 additions and 1 deletions
|
@ -295,7 +295,7 @@ $make
|
|||
echo "ROCKBOXDEV: binutils/make install to $prefix/$target"
|
||||
$make install
|
||||
cd .. # get out of build-binu
|
||||
PATH="${PATH}:$bindir"
|
||||
PATH="$bindir:${PATH}"
|
||||
SHELL=/bin/sh # seems to be needed by the gcc build in some cases
|
||||
|
||||
echo "ROCKBOXDEV: mkdir build-gcc"
|
||||
|
|
Loading…
Reference in a new issue