From: Taylor R Campbell Date: Mon, 7 Jan 2019 05:27:38 +0000 (+0000) Subject: Configure outcome should not depend on whether lib/all.com exists! X-Git-Tag: mit-scheme-pucked-10.1.9~3^2~4 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=fdeca838b4e35e5ebc6daa48ba8fe3601e2f028a;p=mit-scheme.git Configure outcome should not depend on whether lib/all.com exists! This meant you got a different (and broken) build if you simply reran configure, which is awfully confusing. Now we use the native release marker to change the default behaviour of configure reliably. What idiot did this, git blame? ...oh. --- diff --git a/src/configure.ac b/src/configure.ac index 4fa074286..274a57d8a 100644 --- a/src/configure.ac +++ b/src/configure.ac @@ -57,7 +57,7 @@ AC_ARG_WITH([compiler-target], AC_ARG_ENABLE([host-scheme-test], AS_HELP_STRING([--enable-host-scheme-test], [Test for working scheme on build host [[if necessary]]])) -if test x"${IS_NATIVE_RELEASE}" != x || test -f lib/all.com; then +if test x"${IS_NATIVE_RELEASE}" != x; then : ${enable_host_scheme_test=no} else : ${enable_host_scheme_test=yes}