From 9022565efeb1a49584542b923cfcdaa90431d243 Mon Sep 17 00:00:00 2001 From: Brad Parker Date: Thu, 1 Aug 2019 10:51:04 -0400 Subject: [PATCH] Makefile: NEED_XX_LINKER might already be set in the environment --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index cd67bd9ce4..133228de2a 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ HAVE_FILE_LOGGER=1 -NEED_CXX_LINKER=0 -NEED_GOLD_LINKER=0 +NEED_CXX_LINKER?=0 +NEED_GOLD_LINKER?=0 MISSING_DECLS =0 ifneq ($(C90_BUILD),)