2021-04-25 11:08:48 +00:00
|
|
|
From e85513f5bb1884b60d0e261e23366c3291b50d67 Mon Sep 17 00:00:00 2001
|
2020-08-21 10:18:02 +00:00
|
|
|
From: Ariadne Conill <ariadne@dereferenced.org>
|
|
|
|
Date: Fri, 21 Aug 2020 06:59:43 +0000
|
2021-04-25 11:08:48 +00:00
|
|
|
Subject: [PATCH] build: fix CXXFLAGS_FOR_BUILD passing
|
2020-08-21 10:18:02 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
Makefile.in | 1 +
|
|
|
|
1 file changed, 1 insertion(+)
|
|
|
|
|
|
|
|
diff --git a/Makefile.in b/Makefile.in
|
|
|
|
index 36e369df6e7..63627db68cf 100644
|
|
|
|
--- a/Makefile.in
|
|
|
|
+++ b/Makefile.in
|
|
|
|
@@ -170,6 +170,7 @@ BUILD_EXPORTS = \
|
|
|
|
# built for the build system to override those in BASE_FLAGS_TO_PASS.
|
|
|
|
EXTRA_BUILD_FLAGS = \
|
|
|
|
CFLAGS="$(CFLAGS_FOR_BUILD)" \
|
|
|
|
+ CXXFLAGS="$(CXXFLAGS_FOR_BUILD)" \
|
|
|
|
LDFLAGS="$(LDFLAGS_FOR_BUILD)"
|
|
|
|
|
|
|
|
# This is the list of directories to built for the host system.
|
|
|
|
--
|
2021-03-28 18:49:36 +00:00
|
|
|
2.31.0
|
2020-08-21 10:18:02 +00:00
|
|
|
|