diff options
author | Greg Ames <gregames@apache.org> | 2001-04-16 19:55:05 +0000 |
---|---|---|
committer | Greg Ames <gregames@apache.org> | 2001-04-16 19:55:05 +0000 |
commit | 301bdefb3c10943eaaf54c48202b6762616b6dd2 (patch) | |
tree | b33281985bd56974f81435023916210003e27107 /buildconf | |
parent | 1e331c37ffdf317e6a717f207b161b5e4b89bd8c (diff) | |
download | httpd-301bdefb3c10943eaaf54c48202b6762616b6dd2.tar.gz |
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-x | buildconf | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -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) |