diff options
author | Ben Laurie <ben@apache.org> | 2000-03-18 14:07:40 +0100 |
---|---|---|
committer | Ben Laurie <ben@apache.org> | 2000-03-18 14:07:40 +0100 |
commit | 3355ee5a68cb40c16189b73a7c4189fbe360389c (patch) | |
tree | a1fb598331f97336b7d1389dcb768c8c2396b1b9 /buildconf | |
parent | Strict prototypes are no use until someone rewrites the config API. (diff) | |
download | apache2-3355ee5a68cb40c16189b73a7c4189fbe360389c.tar.xz apache2-3355ee5a68cb40c16189b73a7c4189fbe360389c.zip |
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 |