mirror of
https://github.com/apache/httpd.git
synced 2025-08-01 16:41:19 +00:00
Abort apache buildconf if apr buildconf or apr-util buildconf fails.
Otherwise, the error message from apr or apr-util (e.g., invalid libtool version) is lost in the stream of output. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88602 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -103,10 +103,10 @@ 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)
|
||||
(cd srclib/apr && ./buildconf) || exit 1
|
||||
|
||||
echo rebuilding $aprutil_configure
|
||||
(cd srclib/apr-util && ./buildconf.sh)
|
||||
(cd srclib/apr-util && ./buildconf.sh) || exit 1
|
||||
|
||||
echo rebuilding $pcre_configure
|
||||
(cd srclib/pcre && autoconf)
|
||||
|
Reference in New Issue
Block a user