Skip to content
Snippets Groups Projects
Commit 29204b1c authored by Ben Gamari's avatar Ben Gamari
Browse files

configure: Fix double-negation in ld merge-objects check

We want to only run the check if ld is gold.

Fixes the fix to #17962.

(cherry picked from commit d589ef25)
parent 44f958c8
No related branches found
Tags ghc-8.10.2-release
No related merge requests found
......@@ -2527,7 +2527,7 @@ AC_DEFUN([FIND_LD],[
# Sets $result to 0 if not affected, 1 otherwise
AC_DEFUN([CHECK_FOR_GOLD_T22266],[
AC_MSG_CHECKING([for ld.gold object merging bug (binutils 22266)])
if ! $1 --version | grep -v -q "GNU gold"; then
if ! $1 --version | grep -q "GNU gold"; then
# Not gold
result=0
elif test "$cross_compiling" = "yes"; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment