Package version bump to 1.8.28 included a configuration change that cause runtime errors like the once below when gcc libs are missing on target.
sudo: error while loading shared libraries: libasan.so.5: cannot open shared object file: No such file or directory sudo: error while loading shared libraries: libubsan.so.1: cannot open shared object file: No such file or directory Signed-off-by: Bruno Thomsen <[email protected]> --- rules/sudo.make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/sudo.make b/rules/sudo.make index a7fa0ad4a..985ab8768 100644 --- a/rules/sudo.make +++ b/rules/sudo.make @@ -63,7 +63,7 @@ SUDO_AUTOCONF = \ --disable-gcrypt \ --enable-hardening \ --enable-pie \ - --enable-asan \ + --disable-asan \ --enable-poll \ --disable-admin-flag \ --disable-nls \ -- 2.21.0 _______________________________________________ ptxdist mailing list [email protected]
