From fdeca838b4e35e5ebc6daa48ba8fe3601e2f028a Mon Sep 17 00:00:00 2001 From: Taylor R Campbell Date: Mon, 7 Jan 2019 05:27:38 +0000 Subject: [PATCH] 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. --- src/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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} -- 2.25.1