From 428f8048702ba2c5c86a270221ec2bb3b16643a8 Mon Sep 17 00:00:00 2001 From: David Minton Date: Wed, 16 Aug 2023 06:01:01 -0400 Subject: [PATCH] Fixed typo in the set_compiler script that was accidentaly setting the c++ compiler to cpp --- buildscripts/set_compilers.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildscripts/set_compilers.sh b/buildscripts/set_compilers.sh index 8711589c4..2621089aa 100755 --- a/buildscripts/set_compilers.sh +++ b/buildscripts/set_compilers.sh @@ -105,7 +105,7 @@ case $COMPILER in export FC=${FC:-$(command -v gfortran)} export CC=${CC:-$(command -v gcc)} export CXX=${CXX:-$(command -v g++)} - export CXX=${CPP:-$(command -v cpp)} + export CPP=${CPP:-$(command -v cpp)} ;; GNU-Mac) export FC=${FC:-$HOMEBREW_PREFIX/bin/gfortran-13}