From ea959583593db261746ff3f33619799062b4ead6 Mon Sep 17 00:00:00 2001 From: Colin Finck Date: Sun, 22 Dec 2019 16:34:22 +0100 Subject: [PATCH] [ROSBE-UNIX] Don't export the CC and CXX variables, this clashes with the mingw-w64 build inside the gcc build. --- RosBE-Unix/Base-i386/RosBE-Builder.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RosBE-Unix/Base-i386/RosBE-Builder.sh b/RosBE-Unix/Base-i386/RosBE-Builder.sh index 33c01a9..aea903e 100755 --- a/RosBE-Unix/Base-i386/RosBE-Builder.sh +++ b/RosBE-Unix/Base-i386/RosBE-Builder.sh @@ -11,11 +11,11 @@ if [ -z "$BASH_VERSION" ]; then fi if [ "$CC" == "" ]; then - export CC=gcc + CC=gcc fi if [ "$CXX" == "" ]; then - export CXX=g++ + CXX=g++ fi # RosBE Setup Variables