summaryrefslogtreecommitdiffstats
path: root/buildconf
diff options
context:
space:
mode:
authorGreg Ames <gregames@apache.org>2001-04-16 21:55:05 +0200
committerGreg Ames <gregames@apache.org>2001-04-16 21:55:05 +0200
commit301bdefb3c10943eaaf54c48202b6762616b6dd2 (patch)
treeb33281985bd56974f81435023916210003e27107 /buildconf
parent*Sigh*. Slight janatorial work. (diff)
downloadapache2-301bdefb3c10943eaaf54c48202b6762616b6dd2.tar.xz
apache2-301bdefb3c10943eaaf54c48202b6762616b6dd2.zip
give the poor users (i.e. us) a clue that something might be wrong when
buildconf fails in subdirectories git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88871 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf10
1 files changed, 8 insertions, 2 deletions
diff --git a/buildconf b/buildconf
index 281ae52f35..19fa1b45e4 100755
--- a/buildconf
+++ b/buildconf
@@ -103,10 +103,16 @@ config_h_in="include/ap_config_auto.h.in"
cross_compile_warning="warning: AC_TRY_RUN called without default to allow cross compiling"
echo rebuilding $apr_configure
-(cd srclib/apr && ./buildconf) || exit 1
+(cd srclib/apr && ./buildconf) || {
+ echo "./buildconf failed for apr"
+ exit 1
+}
echo rebuilding $aprutil_configure
-(cd srclib/apr-util && ./buildconf.sh) || exit 1
+(cd srclib/apr-util && ./buildconf.sh) || {
+ echo "./buildconf.sh failed for apr-util"
+ exit 1
+}
echo rebuilding $pcre_configure
(cd srclib/pcre && autoconf)