2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 01:49:11 +00:00

Fix typo that prevented a missing linux audit lib from being detected.

This commit is contained in:
Todd C. Miller 2019-08-23 11:37:55 -06:00
parent 2087f6354c
commit 5a22865131

2
mkpkg
View File

@ -304,7 +304,7 @@ case "$osversion" in
test -n "$linux_audit" && break;
fi
done
if [ -z "linux_audit" ]; then
if [ -z "$linux_audit" ]; then
echo "unable to determine package for libaudit" 1>&2
exit 1
fi