From 08a5574ebf799cd9b886ad002e76cb10ec90d60c Mon Sep 17 00:00:00 2001 From: arkivm Date: Fri, 16 Sep 2022 10:47:06 -0700 Subject: [PATCH] Update DEP_CXX to use CXX Since DEP_CXX is a non standard variable, set it to use CXX to avoid build failures when compiling with clang environments. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5a3808b..9729b19 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ PREFIX ?= /usr/local CXX ?= g++ LD ?= g++ -DEP_CXX ?= g++ +DEP_CXX ?= $(CXX) AR ?= ar RANLIB ?= ranlib STRIP ?= strip