From a0ff7d0fa9f5718d5d4415b6be4bcff97ba0d392 Mon Sep 17 00:00:00 2001 From: Robert Menes Date: Mon, 13 Apr 2009 22:14:14 +0000 Subject: [PATCH] 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 --- tools/rockboxdev.sh | 4 ++-- 1 file 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