1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Robert Menes 2009-04-13 22:14:14 +00:00
parent 7a32c49457
commit a0ff7d0fa9

View file

@ -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