Skip to content

Commit

Permalink
fix check for GCC 14
Browse files Browse the repository at this point in the history
  • Loading branch information
bedroge committed Sep 12, 2024
1 parent d327988 commit 451b7f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion containers/build-or-download-cvmfs-debs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ then

# gcc 14 fix for CVMFS's dependency pacparser, see
# https://github.com/manugarg/pacparser/issues/194
if gcc --version | grep -q "^gcc" | grep -q "14"; then
if gcc --version | grep -q "^gcc.*14"; then
cat << EOF > externals/pacparser/src/fix_gcc14.patch
--- a/src/spidermonkey/js/src/jsapi.c
+++ b/src/spidermonkey/js/src/jsapi.c
Expand Down

0 comments on commit 451b7f2

Please sign in to comment.