]> granicus.if.org Git - apache/commitdiff
Tru64 make gets confused by null argument!
authorBen Laurie <ben@apache.org>
Sat, 18 Mar 2000 13:07:40 +0000 (13:07 +0000)
committerBen Laurie <ben@apache.org>
Sat, 18 Mar 2000 13:07:40 +0000 (13:07 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84792 13f79535-47bb-0310-9956-ffa450edef68

buildconf

index 4524774bfad7d1ed39a5d45f1ae6a1cb4becca39..6e34680ce805633bf2ee1c9cb14e0873a98b811b 100755 (executable)
--- 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