summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtools/rockboxdev.sh8
1 files changed, 5 insertions, 3 deletions
diff --git a/tools/rockboxdev.sh b/tools/rockboxdev.sh
index 897c6f8652..508b1ad12e 100755
--- a/tools/rockboxdev.sh
+++ b/tools/rockboxdev.sh
@@ -24,9 +24,9 @@ builddir="${RBDEV_BUILD:-/tmp/rbdev-build}"
24# by running the "make" command, on most BSD systems, GNU Make is invoked 24# by running the "make" command, on most BSD systems, GNU Make is invoked
25# by running the "gmake" command. Set the "make" variable accordingly. 25# by running the "gmake" command. Set the "make" variable accordingly.
26if [ -f "`which gmake 2>/dev/null`" ]; then 26if [ -f "`which gmake 2>/dev/null`" ]; then
27 make="gmake -r" 27 make="gmake"
28else 28else
29 make="make -r" 29 make="make"
30fi 30fi
31 31
32if [ -z $GNU_MIRROR ] ; then 32if [ -z $GNU_MIRROR ] ; then
@@ -295,7 +295,9 @@ echo "ROCKBOXDEV: binutils/configure"
295# Ubuntu installations 295# Ubuntu installations
296CFLAGS=-U_FORTIFY_SOURCE ../binutils-$binutils/configure --target=$target --prefix=$prefix/$target $binutilsconf 296CFLAGS=-U_FORTIFY_SOURCE ../binutils-$binutils/configure --target=$target --prefix=$prefix/$target $binutilsconf
297echo "ROCKBOXDEV: binutils/make" 297echo "ROCKBOXDEV: binutils/make"
298$make 298# We add -r when building binutils to fix compilation on OSX - Apple's make has
299# extra built-ins which cause problems.
300$make -r
299echo "ROCKBOXDEV: binutils/make install to $prefix/$target" 301echo "ROCKBOXDEV: binutils/make install to $prefix/$target"
300$make install 302$make install
301cd .. # get out of build-binu-$1 303cd .. # get out of build-binu-$1