mirror of
https://git.yoctoproject.org/poky
synced 2026-09-13 18:49:33 +02:00
perl: upgrade from 5.12.3 to 5.14.2
parallel build fix patches are not needed as they are upstream now. Got a new set of debian patch set for 5.14.2 perl-rpdepends: fix the autogenerated rdepends mistakes take out some mdoules which are not going to be built. [Saul Wold: Remove debug] (From OE-Core rev: 8dc5f118832a4aca906239ffed82f72497c37f8e) Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
53f7342562
commit
5f8f114e4c
44
meta/recipes-devtools/perl/perl-5.14.2/debian/fakeroot.diff
Normal file
44
meta/recipes-devtools/perl/perl-5.14.2/debian/fakeroot.diff
Normal file
@@ -0,0 +1,44 @@
|
||||
From a46a7107fb045ffa6047488b8002fec97b621a11 Mon Sep 17 00:00:00 2001
|
||||
From: Brendan O'Dea <bod@debian.org>
|
||||
Date: Fri, 18 Mar 2005 22:22:25 +1100
|
||||
Subject: Postpone LD_LIBRARY_PATH evaluation to the binary targets.
|
||||
|
||||
Modify the setting of LD_LIBRARY_PATH to append pre-existing values at the
|
||||
time the rule is evaluated rather than when the Makefile is created.
|
||||
|
||||
This is required when building packages with dpkg-buildpackage and fakeroot,
|
||||
since fakeroot (which now sets LD_LIBRARY_PATH) is not used for the "build"
|
||||
rule where the Makefile is created, but is for the clean/binary* targets.
|
||||
|
||||
Patch-Name: debian/fakeroot.diff
|
||||
---
|
||||
Makefile.SH | 9 ++-------
|
||||
1 files changed, 2 insertions(+), 7 deletions(-)
|
||||
|
||||
diff --git a/Makefile.SH b/Makefile.SH
|
||||
index eb6326a..1dac585 100755
|
||||
--- a/Makefile.SH
|
||||
+++ b/Makefile.SH
|
||||
@@ -36,12 +36,7 @@ case "$useshrplib" in
|
||||
true)
|
||||
# Prefix all runs of 'miniperl' and 'perl' with
|
||||
# $ldlibpth so that ./perl finds *this* shared libperl.
|
||||
- case "$LD_LIBRARY_PATH" in
|
||||
- '')
|
||||
- ldlibpth="LD_LIBRARY_PATH=`pwd`";;
|
||||
- *)
|
||||
- ldlibpth="LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}";;
|
||||
- esac
|
||||
+ ldlibpth=LD_LIBRARY_PATH=`pwd`'$${LD_LIBRARY_PATH:+:}$$LD_LIBRARY_PATH'
|
||||
|
||||
pldlflags="$cccdlflags"
|
||||
static_ldflags=''
|
||||
@@ -112,7 +107,7 @@ true)
|
||||
;;
|
||||
esac
|
||||
case "$ldlibpthname" in
|
||||
- '') ;;
|
||||
+ ''|LD_LIBRARY_PATH) ;;
|
||||
*)
|
||||
case "$osname" in
|
||||
os2)
|
||||
Reference in New Issue
Block a user