From 5f491dd51cc6ecbb87d37e5a4d9191b716d491a5 Mon Sep 17 00:00:00 2001 From: Pierre Pebay Date: Thu, 15 Aug 2024 10:18:45 -0600 Subject: [PATCH] #2302: build script: double quote to prevent globbing and word splitting --- ci/build_cpp.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/build_cpp.sh b/ci/build_cpp.sh index d242d9220a..e072431950 100755 --- a/ci/build_cpp.sh +++ b/ci/build_cpp.sh @@ -113,7 +113,7 @@ then cd papi/src export PAPI_BUILD=${build_dir}/papi mkdir -p "$PAPI_BUILD" - CC="${CC:-cc}" F77="${F77:-gfortran}" ./configure --prefix=${PAPI_BUILD}/install + CC="${CC:-cc}" F77="${F77:-gfortran}" ./configure --prefix="$PAPI_BUILD/install" make -j ${dashj} && make install fi fi