summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorRobert Menes <rmenes@rockbox.org>2009-04-13 22:14:14 +0000
committerRobert Menes <rmenes@rockbox.org>2009-04-13 22:14:14 +0000
commita0ff7d0fa9f5718d5d4415b6be4bcff97ba0d392 (patch)
tree44f073c96517faa66f8597b9e6cacc95d58d171a /tools
parent7a32c494577942d3c70fbf6763b80e4742686555 (diff)
downloadrockbox-a0ff7d0fa9f5718d5d4415b6be4bcff97ba0d392.tar.gz
rockbox-a0ff7d0fa9f5718d5d4415b6be4bcff97ba0d392.zip
Commit FS#10108 by myself: use the -r option for gmake and make when building the Rockbox dev environment. This was needed for Mac OS X especially; the -r option makes gmake and make ignore their own rules and use the rules set by rockboxdev.sh; thanks to Dave Chapman for the idea.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20704 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rwxr-xr-xtools/rockboxdev.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/rockboxdev.sh b/tools/rockboxdev.sh
index 1c9d794b07..897c6f8652 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