Skip to content

Commit

Permalink
Fix quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
RealCLanger committed Jan 11, 2024
1 parent 7e14547 commit bd17727
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions make/autoconf/toolchain.m4
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ AC_DEFUN_ONCE([TOOLCHAIN_DETECT_TOOLCHAIN_CORE],
AC_MSG_WARN([CXX before filtering: $CXX])
# filter out some unwanted additions autoconf may add to CXX; we saw this on macOS with autoconf 2.72
UTIL_GET_NON_MATCHING_VALUES(cxx_filtered, $CXX, "-std=c++11 -std=gnu++11")
UTIL_GET_NON_MATCHING_VALUES(cxx_filtered, $CXX, -std=c++11 -std=gnu++11)
if test "x$cxx_filtered" != x; then
CXX="$cxx_filtered"
fi
Expand Down Expand Up @@ -711,7 +711,7 @@ AC_DEFUN_ONCE([TOOLCHAIN_DETECT_TOOLCHAIN_CORE],
AC_MSG_WARN([CXXCPP before filtering: $CXXCPP])
# filter out some unwanted additions autoconf may add to CXX; we saw this on macOS with autoconf 2.72
UTIL_GET_NON_MATCHING_VALUES(cxx_filtered, $CXXCPP, "-std=c++11 -std=gnu++11")
UTIL_GET_NON_MATCHING_VALUES(cxx_filtered, $CXXCPP, -std=c++11 -std=gnu++11)
if test "x$cxx_filtered" != x; then
CXXCPP="$cxx_filtered"
fi
Expand Down

0 comments on commit bd17727

Please sign in to comment.