diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2022-09-20 07:01:20 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2022-09-20 07:01:20 -0700 |
commit | c499b927e1a48e5e0351da472de4736a3e4b445f (patch) | |
tree | 1e127b873cce02021384b39cd561439323da7b73 | |
parent | 0b3b49b8db9cb957d3d829af9b3f329a9de5569a (diff) | |
download | txr-c499b927e1a48e5e0351da472de4736a3e4b445f.tar.gz txr-c499b927e1a48e5e0351da472de4736a3e4b445f.tar.bz2 txr-c499b927e1a48e5e0351da472de4736a3e4b445f.zip |
configure: bogus line preventing errors being shown.
* configure: when the compiler is not found to be sane, we
used to print the errors. But in a 2014 commit, the stray
line "conftest && true" was left behind, whose termination
status is false, and which thus causes an exit.
-rwxr-xr-x | configure | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -1083,7 +1083,6 @@ if ! conftest ; then lang_flags="$(echo "$lang_flags" | sed -e 's/-ansi/-std=c99/')" else printf "no\n\n" - conftest && true printf "Errors from compilation: \n\n" cat conftest.err exit 1 |