From: Ben Laurie Date: Sat, 18 Mar 2000 13:07:40 +0000 (+0000) Subject: Tru64 make gets confused by null argument! X-Git-Tag: APACHE_2_0_ALPHA_2~64 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3355ee5a68cb40c16189b73a7c4189fbe360389c;p=apache Tru64 make gets confused by null argument! git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84792 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/buildconf b/buildconf index 4524774bfa..6e34680ce8 100755 --- a/buildconf +++ b/buildconf @@ -1,3 +1,7 @@ #!/bin/sh -${MAKE:-make} -f build/build.mk "$@" +if [ "x$@" = "x" ]; then + ${MAKE:-make} -f build/build.mk +else + ${MAKE:-make} -f build/build.mk "$@" +fi