Description: don't erase compiler environment variables.
 This helps with testing alternative compilers, and it should also give a
 little hand to cross-builds.
Author: Étienne Mollier <emollier@debian.org>
Forwarded: not-needed
Last-Update: 2022-07-01
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- libatomic-queue.orig/Makefile
+++ libatomic-queue/Makefile
@@ -22,8 +22,8 @@
 ld.clang := clang++
 ar.clang := ar
 
-CXX := ${cxx.${TOOLSET}}
-CC := ${cc.${TOOLSET}}
+CXX ?= ${cxx.${TOOLSET}}
+CC ?= ${cc.${TOOLSET}}
 LD := ${ld.${TOOLSET}}
 AR := ${ar.${TOOLSET}}
 
