From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59020) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f8q9k-0004MH-Fg for guix-patches@gnu.org; Wed, 18 Apr 2018 12:42:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f8q9j-0003jr-Eh for guix-patches@gnu.org; Wed, 18 Apr 2018 12:42:04 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:51619) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f8q9j-0003jn-BR for guix-patches@gnu.org; Wed, 18 Apr 2018 12:42:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1f8q9j-000284-4w for guix-patches@gnu.org; Wed, 18 Apr 2018 12:42:03 -0400 Subject: [bug#31208] [PATCH 3/3] build-system/meson: Use 'strip-runpath' instead of PatchELF. Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Date: Wed, 18 Apr 2018 18:40:54 +0200 Message-Id: <20180418164054.29979-3-ludo@gnu.org> In-Reply-To: <20180418164054.29979-1-ludo@gnu.org> References: <20180418164054.29979-1-ludo@gnu.org> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 31208@debbugs.gnu.org * guix/build/meson-build-system.scm (fix-runpath): Call 'strip-runpath' instead of invoking 'patchelf'. --- guix/build/meson-build-system.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guix/build/meson-build-system.scm b/guix/build/meson-build-system.scm index e8cb5440e..793cc32e7 100644 --- a/guix/build/meson-build-system.scm +++ b/guix/build/meson-build-system.scm @@ -134,7 +134,7 @@ for example libraries only needed for the tests." (find-files dir elf-pred)) existing-elf-dirs)))) (for-each (lambda (elf-file) - (system* "patchelf" "--shrink-rpath" elf-file) + (strip-runpath elf-file) (handle-file elf-file elf-list)) elf-list))))) (for-each handle-output outputs) -- 2.17.0