Configure outcome should not depend on whether lib/all.com exists!
authorTaylor R Campbell <campbell@mumble.net>
Mon, 7 Jan 2019 05:27:38 +0000 (05:27 +0000)
committerTaylor R Campbell <campbell@mumble.net>
Mon, 7 Jan 2019 08:11:37 +0000 (08:11 +0000)
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

index 4fa0742864769e9b62c540d0da77e4df028c9e64..274a57d8ad6b70c0f4a4528148c2fa4bf7fa76cc 100644 (file)
@@ -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}