From patchwork Fri Mar 30 08:11:40 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Korsgaard X-Patchwork-Id: 149586 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 0C2A8B6EEC for ; Fri, 30 Mar 2012 19:15:31 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 377D0101C70; Fri, 30 Mar 2012 08:15:30 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id M3ovqudpSy9x; Fri, 30 Mar 2012 08:15:27 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id E0616101CD6; Fri, 30 Mar 2012 08:15:26 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 224C28F753 for ; Fri, 30 Mar 2012 08:15:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 17A1F101C74 for ; Fri, 30 Mar 2012 08:15:26 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 88cTm9p0Djz3 for ; Fri, 30 Mar 2012 08:15:25 +0000 (UTC) Received: from busybox.osuosl.org (busybox.osuosl.org [140.211.167.224]) by fraxinus.osuosl.org (Postfix) with ESMTP id 59194101CD6 for ; Fri, 30 Mar 2012 08:15:25 +0000 (UTC) Received: by busybox.osuosl.org (Postfix, from userid 4021) id 4EDDF969B8; Fri, 30 Mar 2012 08:15:25 +0000 (UTC) From: Peter Korsgaard To: buildroot@busybox.net Date: Fri, 30 Mar 2012 10:11:40 +0200 X-Git-Refname: refs/heads/master X-Git-Oldrev: 1b7f5285fbf6b03c14d48d614ae3ade91868f954 X-Git-Newrev: 4bff1dde4b753e986c36858dd9e6afd04eb054ac X-Patchwork-Hint: ignore Message-Id: <20120330081525.4EDDF969B8@busybox.osuosl.org> Subject: [Buildroot] [git commit] libxml-parser-perl: Pass USE_MM_LD_RUN_PATH to MakeMaker. X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net commit: http://git.buildroot.net/buildroot/commit/?id=4bff1dde4b753e986c36858dd9e6afd04eb054ac branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master Red Hat versions of perl do not honour the setting of LD_RUN_PATH without this option. This leads to perl shared objects being installed without an rpath set which causes problems for target tools when searching for dependant shared libraries. Signed-off-by: Will Newton Acked-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- package/libxml-parser-perl/libxml-parser-perl.mk | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/package/libxml-parser-perl/libxml-parser-perl.mk b/package/libxml-parser-perl/libxml-parser-perl.mk index 1022302..0d02981 100644 --- a/package/libxml-parser-perl/libxml-parser-perl.mk +++ b/package/libxml-parser-perl/libxml-parser-perl.mk @@ -24,6 +24,7 @@ define HOST_LIBXML_PARSER_PERL_CONFIGURE_CMDS INSTALLDIRS=site \ INSTALLSITELIB=$(HOST_DIR)/usr/lib/perl \ INSTALLSITEARCH=$(HOST_DIR)/usr/lib/perl \ + USE_MM_LD_RUN_PATH=1 \ ) endef