From 7c371f6a8c2d7961933bd7d0ca0bf954d9eea66b Mon Sep 17 00:00:00 2001 From: Barry Wardell Date: Mon, 13 Aug 2007 00:10:00 +0000 Subject: Accept FS#6499 - fix rockboxdev.sh make/gmake detection in Mac OS X/Darwin. Thanks to Lenny Koepsell. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14306 a1c6a512-1295-4272-9138-f99709370657 --- docs/CREDITS | 1 + tools/rockboxdev.sh | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/docs/CREDITS b/docs/CREDITS index a162e21..1c400b3 100644 --- a/docs/CREDITS +++ b/docs/CREDITS @@ -313,6 +313,7 @@ Charles Voelger Gerritt Gonzales Dieter Pellkofer Evgeniy Kachalin +Lenny Koepsell The libmad team The wavpack team The ffmpeg team diff --git a/tools/rockboxdev.sh b/tools/rockboxdev.sh index 7bfd784..a927afe 100755 --- a/tools/rockboxdev.sh +++ b/tools/rockboxdev.sh @@ -23,6 +23,11 @@ else make="make" fi +# Alternate detection for Mac OS X/Darwin +if [ "`uname`" == "Darwin" ] && which gmake | grep -q '^no'; then + make="make" +fi + # If detection fails, override the value of make manually: # make="make" -- cgit v1.1