]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* acgeneral.m4 (_AC_OUTPUT_FILES): Fixed exit status.
authorPavel Roskin <proski@gnu.org>
Thu, 28 Sep 2000 14:39:55 +0000 (14:39 +0000)
committerPavel Roskin <proski@gnu.org>
Thu, 28 Sep 2000 14:39:55 +0000 (14:39 +0000)
(_AC_OUTPUT_HEADERS): Exit if the header template is missing.

ChangeLog
acgeneral.m4
lib/autoconf/general.m4

index 9f4e6a998b8e19c14d66a7970ee84a6b0d2f919a..801a459026733aacb6cc9c6112fce744d5fae594 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-09-28  Pavel Roskin  <proski@gnu.org>
+
+       * acgeneral.m4 (_AC_OUTPUT_FILES): Fixed exit status.
+       (_AC_OUTPUT_HEADERS): Exit if the header template is missing.
+
 2000-09-28  Pavel Roskin  <proski@gnu.org>
 
        * acfunctions.m4: Formatting fixes.
index 0691c4f5da95cbb243c293d1143fa1375380c817..59c937ab27f35acb6ffb86e7d1c172f052e6c5a3 100644 (file)
@@ -4775,7 +4775,7 @@ AC_PROVIDE_IFELSE([AC_PROG_INSTALL],
            AC_MSG_ERROR([cannot find input file \\`$f'])
          fi;;
       esac
-    done` || exit 1
+    done` || { (exit 1); exit; }
 EOF
 cat >>$CONFIG_STATUS <<EOF
 dnl Neutralize VPATH when `$srcdir' = `.'.
@@ -4922,7 +4922,7 @@ for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
            AC_MSG_ERROR([cannot find input file \\`$f'])
          fi;;
       esac
-    done`
+    done` || { (exit 1); exit; }
   # Remove the trailing spaces.
   sed 's/[[    ]]*$//' $ac_file_inputs >$tmp/in
 
index 0691c4f5da95cbb243c293d1143fa1375380c817..59c937ab27f35acb6ffb86e7d1c172f052e6c5a3 100644 (file)
@@ -4775,7 +4775,7 @@ AC_PROVIDE_IFELSE([AC_PROG_INSTALL],
            AC_MSG_ERROR([cannot find input file \\`$f'])
          fi;;
       esac
-    done` || exit 1
+    done` || { (exit 1); exit; }
 EOF
 cat >>$CONFIG_STATUS <<EOF
 dnl Neutralize VPATH when `$srcdir' = `.'.
@@ -4922,7 +4922,7 @@ for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
            AC_MSG_ERROR([cannot find input file \\`$f'])
          fi;;
       esac
-    done`
+    done` || { (exit 1); exit; }
   # Remove the trailing spaces.
   sed 's/[[    ]]*$//' $ac_file_inputs >$tmp/in