diff options
author | Ben Laurie <ben@apache.org> | 2000-03-18 13:07:40 +0000 |
---|---|---|
committer | Ben Laurie <ben@apache.org> | 2000-03-18 13:07:40 +0000 |
commit | 3355ee5a68cb40c16189b73a7c4189fbe360389c (patch) | |
tree | a1fb598331f97336b7d1389dcb768c8c2396b1b9 /buildconf | |
parent | f4dc950437b710cec74e57d69444bfe190243183 (diff) | |
download | httpd-3355ee5a68cb40c16189b73a7c4189fbe360389c.tar.gz |
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
Diffstat (limited to 'buildconf')
-rwxr-xr-x | buildconf | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 |