mirror of
https://git.yoctoproject.org/poky
synced 2026-03-02 13:29:40 +01:00
Deleted these patches as they are part of the upstream code now.
deleted: files/perl-5.8.8-gcc-4.2.patch
deleted: perl-5.12.2/makedepend-dash.patch
deleted: perl-5.12.2/native-no-gdbminc.patch
deleted: perl-5.12.2/54_debian_perldoc-r.patch
And rebased these patches to the newer source code
modified: files/letgcc-find-errno.patch
modified: perl-5.12.2/Makefile.patch
modified: perl-5.12.2/asm-pageh-fix.patch
modified: perl-5.12.2/native-nopacklist.patch
modified: perl-5.12.2/native-perlinc.patch
modified: perl-5.12.2/Makefile.SH.patch
modified: perl-5.12.2/installperl.patch
modified: perl-5.12.2/perl-dynloader.patch
modified: perl-5.12.2/09_fix_installperl.patch
get patches from debian perl ver 5.12.2-2
the fakeroot.diff patch from debian is conflicting with our
Makefile.SH.patch, hence disabling the fakeroot patch
use newly created config files
Created with current milestone branch on qemu machines
modified: config.sh
modified: config.sh-32
modified: config.sh-64
get some changes from oe's perl 5.10.1 recipe
fix the Makefile.SH.patch use miniperl instead of perl
import a OE 5.10.1 patch: uudmap_cross
fix install issues
add /usr in the destdir, so that perl gets installed in
/usr/bin/perl and not in /bin/perl
link /usr/lib/perl to /usr/lib/perl5 so that operations with
/usr/lib/perl path in them keep on working.
Fix/Improve perl packaging
avoid perl-module-module-* kind of packages
recreate perl-rdepends_5.12.2.inc file with new set of packages
import from oe perl-rprovide_5.12.2.inc
combine all unicore perl scripts in one package
simplify perl-lib
reduce no of perl recipe packages greatly.
Add zlib to depedancy
fix buildtime host contamination
This also fixes [BUGID #384]
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
58 lines
2.2 KiB
Diff
58 lines
2.2 KiB
Diff
Index: perl-5.12.2/Cross/Makefile
|
|
===================================================================
|
|
--- perl-5.12.2.orig/Cross/Makefile
|
|
+++ perl-5.12.2/Cross/Makefile
|
|
@@ -2,7 +2,8 @@
|
|
#
|
|
## $Id: Makefile,v 1.5 2003/12/12 00:48:19 red Exp red $
|
|
|
|
-export TOPDIR=${shell pwd}
|
|
+override TOPDIR=${shell pwd}
|
|
+export TOPDIR
|
|
include $(TOPDIR)/config
|
|
export CFLAGS
|
|
export SYS=$(ARCH)-$(OS)
|
|
@@ -12,7 +13,7 @@ export OPTIMIZATION = -O2
|
|
|
|
export CC = $(CROSS)gcc
|
|
export CXX = $(CROSS)g++
|
|
-export LD = $(CROSS)ld
|
|
+export LD = $(CC)
|
|
export STRIP = $(CROSS)strip
|
|
export AR = $(CROSS)ar
|
|
export RANLIB = $(CROSS)ranlib
|
|
@@ -34,17 +35,6 @@ CFLAGS+=$(FULL_OPTIMIZATION)
|
|
all:
|
|
@echo Please read the README file before doing anything else.
|
|
|
|
-gen_patch:
|
|
- diff -Bbur ../Makefile.SH Makefile.SH > Makefile.SH.patch
|
|
- diff -Bbur ../installperl installperl > installperl.patch
|
|
-
|
|
-patch:
|
|
- cd .. ; if [ ! -e ./CROSS_PATCHED ] ; then \
|
|
- patch -p1 < Cross/Makefile.SH.patch; \
|
|
- patch -p1 < Cross/installperl.patch ; mv installperl installperl-patched; \
|
|
- sed -e 's/XXSTRIPXX/$(SYS)/' installperl-patched > installperl; \
|
|
- touch CROSS_PATCHED ; fi
|
|
-
|
|
perl:
|
|
@echo Perl cross-build directory is $(TOPDIR)
|
|
@echo Target arch is $(SYS)
|
|
@@ -54,11 +44,11 @@ perl:
|
|
$(TOPDIR)/generate_config_sh config.sh-$(SYS) > $(TOPDIR)/../config.sh
|
|
cd $(TOPDIR)/.. ; ./Configure -S ; make depend ; make ; make more
|
|
cd $(TOPDIR)/.. ; mkdir -p fake_config_library ; cp lib/Config.pm lib/Config_heavy.pl fake_config_library
|
|
- cd $(TOPDIR)/.. ; $(MAKE) more2 "PERLRUN=/usr/bin/perl -I$(TOPDIR)/../fake_config_library -MConfig"
|
|
- cd $(TOPDIR)/.. ; $(MAKE) more3 "PERLRUN=/usr/bin/perl -I$(TOPDIR)/../fake_config_library -MConfig"
|
|
- cd $(TOPDIR)/.. ; $(MAKE) more4 "PERLRUN=/usr/bin/perl -I$(TOPDIR)/../fake_config_library -MConfig"
|
|
+ cd $(TOPDIR)/.. ; $(MAKE) more2 "PERLRUN=hostperl -I$(TOPDIR)/../fake_config_library -MConfig"
|
|
+ cd $(TOPDIR)/.. ; $(MAKE) more3 "PERLRUN=hostperl -I$(TOPDIR)/../fake_config_library -MConfig"
|
|
+ cd $(TOPDIR)/.. ; $(MAKE) more4 "PERLRUN=hostperl -I$(TOPDIR)/../fake_config_library -MConfig"
|
|
cd $(TOPDIR)/.. ; rm -rf install_me_here
|
|
- cd $(TOPDIR)/.. ; make install-strip
|
|
+# cd $(TOPDIR)/.. ; make install-strip
|
|
cd $(TOPDIR)/.. ; sh -x Cross/warp
|
|
|
|
|