From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail-wr1-x444.google.com ([2a00:1450:4864:20::444]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.92) (envelope-from ) id 1iNKk8-0001Fd-P2 for ptxdist@pengutronix.de; Wed, 23 Oct 2019 19:48:21 +0200 Received: by mail-wr1-x444.google.com with SMTP id o28so23052451wro.7 for ; Wed, 23 Oct 2019 10:48:20 -0700 (PDT) From: Bruno Thomsen Date: Wed, 23 Oct 2019 19:48:06 +0200 Message-Id: <20191023174806.4585-1-bruno.thomsen@gmail.com> MIME-Version: 1.0 Subject: [ptxdist] [PATCH 1/2] sudo: fix missing runtime libraries List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ptxdist-bounces@pengutronix.de Sender: "ptxdist" To: ptxdist@pengutronix.de Cc: Bruno Thomsen , bth@kamstrup.com 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 --- 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 ptxdist@pengutronix.de