From feb866d18090f1bf9a661064f88f10d24ec0c8b0 Mon Sep 17 00:00:00 2001 From: Taylor R Campbell Date: Sat, 30 Apr 2011 15:36:28 +0000 Subject: [PATCH] Make configure fail if create-makefiles or compiler/configure fails. --- src/configure.ac | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/configure.ac b/src/configure.ac index 1509b9aa3..e51919654 100644 --- a/src/configure.ac +++ b/src/configure.ac @@ -109,8 +109,9 @@ AC_PROG_INSTALL AC_PROG_LN_S echo etc/create-makefiles.sh "${MIT_SCHEME_EXE}" "${mit_scheme_native_code}" -etc/create-makefiles.sh "${MIT_SCHEME_EXE}" "${mit_scheme_native_code}" -compiler/configure "${mit_scheme_native_code}" +etc/create-makefiles.sh "${MIT_SCHEME_EXE}" "${mit_scheme_native_code}" \ + || exit $? +compiler/configure "${mit_scheme_native_code}" || exit $? AC_CONFIG_SUBDIRS([microcode]) -- 2.25.1