Skip to content

Commit ac18b02

Browse files
authored
Append instead of overwrite CXXFLAGS (#1304)
This should fix #1303
1 parent a5f4007 commit ac18b02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ BINDIR=${BINDIR:-bin}
542542
GATEWAY_DIR=${GATEWAY_DIR:-${PREFIX}/bin}
543543
CC=${CC:-gcc}
544544
CXX=${CXX:-g++}
545-
CXXFLAGS="-std=c++11"
545+
CXXFLAGS="$CXXFLAGS -std=c++11"
546546

547547
if [ -z "${SOC}" ]; then
548548
printf "${SECTION} Detecting target machine.\n"

0 commit comments

Comments
 (0)