From 9cb2b1813b143ffb7f8c480f87aa1f209e2ba21c Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Sat, 19 Sep 2009 17:55:14 -0300 Subject: [PATCH] Fix detection of GOLD linker --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 574eeb0..382fcbb 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ dummy_mkdir := $(shell mkdir -p $O) endif # don't use Gold with old DMDs -ifneq ($(shell ld --version | grep gold),) +ifneq ($(strip $(shell ld --version | grep gold)),) export LD_ := /usr/bin/ld.single endif -- 2.43.0