Skip to content

Commit

Permalink
if KERL_DISABLE_AGNER is set, agner_support should return 1
Browse files Browse the repository at this point in the history
  • Loading branch information
scalone-cw committed May 9, 2024
1 parent 671df56 commit 1137bec
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions kerl
Original file line number Diff line number Diff line change
Expand Up @@ -140,14 +140,16 @@ R12B-2 R12B-3 R12B-4 R12B-5 R13A R13B R13B01 R13B02 R13B03 R13B04"
agner_support()
{
if [ -z "$KERL_DISABLE_AGNER" ]; then
for v in $KERL_NO_AGNER_SUPPORT; do
if [ "$v" = "$1" ]; then
return 1
fi
done
return 0
return 1;
fi
return 1

for v in $KERL_NO_AGNER_SUPPORT; do
if [ "$v" = "$1" ]; then
return 1
fi
done

return 0
}


Expand Down

0 comments on commit 1137bec

Please sign in to comment.