summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtools/rockboxdev.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/rockboxdev.sh b/tools/rockboxdev.sh
index 1c9d794..897c6f8 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"
+ make="gmake -r"
else
- make="make"
+ make="make -r"
fi
if [ -z $GNU_MIRROR ] ; then