Skip to content

Commit

Permalink
#2302: build script: double quote to prevent globbing and word splitting
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrepebay committed Dec 12, 2024
1 parent e920d0c commit e3c54e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/build_cpp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,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
Expand Down

0 comments on commit e3c54e4

Please sign in to comment.