Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
src/bin/sage-valgrind: Also check /usr/lib64/valgrind
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoeppe committed Feb 1, 2020
1 parent 52552f3 commit ae6b748
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/sage-valgrind
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if [ "$SAGE_PYTHON_VERSION" = 2 ]; then
else
PYTHON_SUPP_FILENAME="python$SAGE_PYTHON_VERSION.supp"
fi
for dir in "$SAGE_LOCAL/lib/valgrind" "/usr/local/lib/valgrind" "/usr/lib/valgrind" ; do
for dir in "$SAGE_LOCAL/lib/valgrind" "/usr/local/lib/valgrind" "/usr/lib64/valgrind" "/usr/lib/valgrind" ; do
if [ -f "$dir"/"$PYTHON_SUPP_FILENAME" ]; then
SUPP=" --suppressions=$dir/$PYTHON_SUPP_FILENAME"
break
Expand Down

0 comments on commit ae6b748

Please sign in to comment.