summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/CREDITS1
-rwxr-xr-xtools/rockboxdev.sh5
2 files changed, 6 insertions, 0 deletions
diff --git a/docs/CREDITS b/docs/CREDITS
index a162e21262..1c400b30b3 100644
--- a/docs/CREDITS
+++ b/docs/CREDITS
@@ -313,6 +313,7 @@ Charles Voelger
313Gerritt Gonzales 313Gerritt Gonzales
314Dieter Pellkofer 314Dieter Pellkofer
315Evgeniy Kachalin 315Evgeniy Kachalin
316Lenny Koepsell
316The libmad team 317The libmad team
317The wavpack team 318The wavpack team
318The ffmpeg team 319The ffmpeg team
diff --git a/tools/rockboxdev.sh b/tools/rockboxdev.sh
index 7bfd7840c9..a927afef99 100755
--- a/tools/rockboxdev.sh
+++ b/tools/rockboxdev.sh
@@ -23,6 +23,11 @@ else
23 make="make" 23 make="make"
24fi 24fi
25 25
26# Alternate detection for Mac OS X/Darwin
27if [ "`uname`" == "Darwin" ] && which gmake | grep -q '^no'; then
28 make="make"
29fi
30
26# If detection fails, override the value of make manually: 31# If detection fails, override the value of make manually:
27# make="make" 32# make="make"
28 33