aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/perl/perl-5.8.8/perl-configure.sh
diff options
context:
space:
mode:
authorTom Rini <tom_rini@mentor.com>2011-01-27 10:23:53 -0700
committerTom Rini <tom_rini@mentor.com>2011-02-01 10:51:02 -0700
commitc15142c5e3c5556e7a9d534e8b0a5aa175b79a3a (patch)
treea6f9e32a95f471722672ddab870291faf8373852 /recipes/perl/perl-5.8.8/perl-configure.sh
parent2e1e7af403777b5281957c9089b032e9a92ab0fd (diff)
downloadopenembedded-c15142c5e3c5556e7a9d534e8b0a5aa175b79a3a.tar.gz
perl: Drop 5.8.8, bump PR in all perl recipes
Also remove DEFAULT_PREFERENCE = -1 from 5.10.1 Acked-by: Koen Kooi <koen@openembedded.org> Acked-by: Martin Jansa <Martin.Jansa@gmail.com> Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com> Signed-off-by: Tom Rini <tom_rini@mentor.com>
Diffstat (limited to 'recipes/perl/perl-5.8.8/perl-configure.sh')
-rwxr-xr-xrecipes/perl/perl-5.8.8/perl-configure.sh43
1 files changed, 0 insertions, 43 deletions
diff --git a/recipes/perl/perl-5.8.8/perl-configure.sh b/recipes/perl/perl-5.8.8/perl-configure.sh
deleted file mode 100755
index 9800394b63..0000000000
--- a/recipes/perl/perl-5.8.8/perl-configure.sh
+++ /dev/null
@@ -1,43 +0,0 @@
-ls#! /bin/sh
-
-#
-# Generate the common perl configuration
-# Needs to be run on a host that matches the bitsize of the target platform
-#
-
-echo sh Configure -des \
- -Doptimize=-O2 \
- -Dmyhostname=localhost \
- -Dperladmin=root@localhost \
- -Dcc=gcc \
- -Dcf_by='Open Embedded' \
- -Dinstallprefix=@DESTDIR@ \
- -Dprefix=/usr \
- -Dvendorprefix=/usr \
- -Dsiteprefix=/usr \
- -Dotherlibdirs=/usr/lib/perl5/5.8.8 \
- -Duseshrplib \
- -Dusethreads \
- -Duseithreads \
- -Duselargefiles \
- -Ud_dosuid \
- -Dd_semctl_semun \
- -Ui_db \
- -Ui_ndbm \
- -Ui_gdbm \
- -Di_shadow \
- -Di_syslog \
- -Dman3ext=3pm \
- -Duseperlio \
- -Dinstallusrbinperl \
- -Ubincompat5005 \
- -Uversiononly \
- -Dpager='/usr/bin/less -isr'
-
-cp -f config.sh config.sh.COMMON
-
-TARGETOS=$(grep myarchname config.sh.COMMON | sed "s#.*'\(.*\)'.*#\1#")
-
-sed -r -i config.sh.COMMON \
- -e "s#(install.*=')(/usr)/local(.*')#\1@DESTDIR@\2\3#g" \
- -e 's#'$TARGETOS'#@ARCH@#g'