diff options
Diffstat (limited to 'tools/rockboxdev.sh')
-rwxr-xr-x | tools/rockboxdev.sh | 8 |
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}" # by running the "make" command, on most BSD systems, GNU Make is invoked # by running the "gmake" command. Set the "make" variable accordingly. if [ -f "`which gmake 2>/dev/null`" ]; then - make="gmake -r" + make="gmake" else - make="make -r" + make="make" fi if [ -z $GNU_MIRROR ] ; then @@ -295,7 +295,9 @@ echo "ROCKBOXDEV: binutils/configure" # Ubuntu installations CFLAGS=-U_FORTIFY_SOURCE ../binutils-$binutils/configure --target=$target --prefix=$prefix/$target $binutilsconf echo "ROCKBOXDEV: binutils/make" -$make +# We add -r when building binutils to fix compilation on OSX - Apple's make has +# extra built-ins which cause problems. +$make -r echo "ROCKBOXDEV: binutils/make install to $prefix/$target" $make install cd .. # get out of build-binu-$1 |