summaryrefslogtreecommitdiffstats
path: root/GitMake
diff options
context:
space:
mode:
Diffstat (limited to 'GitMake')
-rwxr-xr-xGitMake4
1 files changed, 3 insertions, 1 deletions
diff --git a/GitMake b/GitMake
index 47beffd6bc..db300045bb 100755
--- a/GitMake
+++ b/GitMake
@@ -2,4 +2,6 @@
BRANCH=`git rev-parse --abbrev-ref HEAD`
-make -f makefile.$BRANCH $@
+MAKE=make
+which bsdmake > /dev/null && MAKE=bsdmake
+$MAKE -f makefile.$BRANCH $@