diff options
author | Paul Querna <pquerna@apache.org> | 2004-11-19 06:19:50 +0000 |
---|---|---|
committer | Paul Querna <pquerna@apache.org> | 2004-11-19 06:19:50 +0000 |
commit | cc8900ed92830298a2cab6007c94e42d2a3d35db (patch) | |
tree | c8cd6f58484fe7999b047ec849fc2552788563a7 /buildconf | |
parent | 95a421762618a5bed4a9bb4d8ab20e660e651912 (diff) | |
download | httpd-cc8900ed92830298a2cab6007c94e42d2a3d35db.tar.gz |
Add some magic to buildconf so it will tell you to get both apr and apr-util the
first time you run it.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105778 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'buildconf')
-rwxr-xr-x | buildconf | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -51,6 +51,8 @@ done # Check to be sure that we have the srclib dependencies checked-out # +should_exit=0 + if [ ! -d "$apr_src_dir" -o ! -f "$apr_src_dir/build/apr_common.m4" ]; then echo "" echo "You don't have a copy of the apr source in $apr_src_dir. " @@ -61,7 +63,7 @@ if [ ! -d "$apr_src_dir" -o ! -f "$apr_src_dir/build/apr_common.m4" ]; then echo " cd srclib" echo " svn co https://svn.apache.org/repos/asf/apr/apr/trunk apr" echo "" - exit 1 + should_exit=1 fi if [ ! -d "$apu_src_dir" -o ! -f "$apu_src_dir/Makefile.in" ]; then echo "" @@ -73,6 +75,10 @@ if [ ! -d "$apu_src_dir" -o ! -f "$apu_src_dir/Makefile.in" ]; then echo " cd srclib" echo " svn co http://svn.apache.org/repos/asf/apr/apr-util/trunk apr-util" echo "" + should_exit=1 +fi + +if [ $should_exit -gt 0 ]; then exit 1 fi |