diff options
author | Mike Stump <mrs@wrs.com> | 2001-01-09 18:55:41 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 2001-01-09 18:55:41 +0000 |
commit | 6e2d9a7aab54522a9ad1e146339a266f1f41f91e (patch) | |
tree | 8e7fc91274bb85e765a7cf43f7aa685f1e1d29eb | |
parent | a2e11fd9e234133f33547df7e11a6d587057ed1a (diff) | |
download | gcc-6e2d9a7aab54522a9ad1e146339a266f1f41f91e.zip gcc-6e2d9a7aab54522a9ad1e146339a266f1f41f91e.tar.gz gcc-6e2d9a7aab54522a9ad1e146339a266f1f41f91e.tar.bz2 |
Makefile.in (CONFIGURE_TARGET_MODULES): Pass back configuration failures of subdirectories.
* Makefile.in (CONFIGURE_TARGET_MODULES): Pass back configuration
failures of subdirectories.
From-SVN: r38837
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.in | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2001-01-09 Mike Stump <mrs@wrs.com> + + * Makefile.in (CONFIGURE_TARGET_MODULES): Pass back configuration + failures of subdirectories. + 2001-01-02 Laurynas Biveinis <lauras@softhome.net> * ltcf-c.sh: clear ac_cv_prog_cc_pic for DJGPP. Do not add diff --git a/Makefile.in b/Makefile.in index 2fbb3fb..24182f9 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1287,7 +1287,7 @@ $(CONFIGURE_TARGET_MODULES): RANLIB="$(RANLIB_FOR_TARGET)"; export RANLIB; \ WINDRES="$(WINDRES_FOR_TARGET)"; export WINDRES; \ echo Configuring in $(TARGET_SUBDIR)/$${dir}; \ - cd $(TARGET_SUBDIR)/$${dir}; \ + cd "$(TARGET_SUBDIR)/$${dir}" || exit 1; \ case $(srcdir) in \ /* | [A-Za-z]:[\\/]*) \ topdir=$(srcdir) ;; \ @@ -1331,7 +1331,7 @@ $(CONFIGURE_TARGET_MODULES): CONFIG_SITE=no-such-file $(SHELL) $$s/configure \ $(CONFIG_ARGUMENTS) $${srcdiroption} \ --with-target-subdir="$(TARGET_SUBDIR)"; \ - fi; \ + fi || exit 1; \ if [ -f skip-this-dir ] ; then \ sh skip-this-dir; \ rm -f skip-this-dir; \ |