* [PATCH 01/03] openssl: Ensure perl scripts reference the correct perl
2011-09-26 14:45 [PATCH 00/03] Perl path contamination fixes Richard Purdie
@ 2011-09-26 14:45 ` Richard Purdie
2011-09-26 14:45 ` [PATCH 02/03] util-linux: " Richard Purdie
2011-09-26 14:45 ` [PATCH 03/03] mc: " Richard Purdie
2 siblings, 0 replies; 4+ messages in thread
From: Richard Purdie @ 2011-09-26 14:45 UTC (permalink / raw)
To: openembedded-core
Without this change the perl path from the build system is used.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
meta/recipes-connectivity/openssl/openssl.inc | 1 +
.../recipes-connectivity/openssl/openssl_0.9.8r.bb | 2 +-
2 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/meta/recipes-connectivity/openssl/openssl.inc b/meta/recipes-connectivity/openssl/openssl.inc
index 88d5081..f3ada13 100644
--- a/meta/recipes-connectivity/openssl/openssl.inc
+++ b/meta/recipes-connectivity/openssl/openssl.inc
@@ -112,4 +112,5 @@ do_install () {
chmod 644 ${D}${libdir}/pkgconfig/openssl.pc
oe_libinstall -so libcrypto ${D}${libdir}
oe_libinstall -so libssl ${D}${libdir}
+ sed -i -e '1s,.*,#!${bindir}/env perl,' ${D}${libdir}/ssl/misc/CA.pl
}
diff --git a/meta/recipes-connectivity/openssl/openssl_0.9.8r.bb b/meta/recipes-connectivity/openssl/openssl_0.9.8r.bb
index 54bdcc2..5add70e 100644
--- a/meta/recipes-connectivity/openssl/openssl_0.9.8r.bb
+++ b/meta/recipes-connectivity/openssl/openssl_0.9.8r.bb
@@ -1,6 +1,6 @@
require openssl.inc
-PR = "r5"
+PR = "r6"
SRC_URI += "file://debian/ca.patch \
file://debian/config-hurd.patch;apply=no \
file://debian/debian-targets.patch \
--
1.7.5.4
^ permalink raw reply related [flat|nested] 4+ messages in thread* [PATCH 02/03] util-linux: Ensure perl scripts reference the correct perl
2011-09-26 14:45 [PATCH 00/03] Perl path contamination fixes Richard Purdie
2011-09-26 14:45 ` [PATCH 01/03] openssl: Ensure perl scripts reference the correct perl Richard Purdie
@ 2011-09-26 14:45 ` Richard Purdie
2011-09-26 14:45 ` [PATCH 03/03] mc: " Richard Purdie
2 siblings, 0 replies; 4+ messages in thread
From: Richard Purdie @ 2011-09-26 14:45 UTC (permalink / raw)
To: openembedded-core
Without this change the perl path from the build system is used.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
meta/recipes-core/util-linux/util-linux_2.19.1.bb | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/meta/recipes-core/util-linux/util-linux_2.19.1.bb b/meta/recipes-core/util-linux/util-linux_2.19.1.bb
index d6d6f9b..5b327cb 100644
--- a/meta/recipes-core/util-linux/util-linux_2.19.1.bb
+++ b/meta/recipes-core/util-linux/util-linux_2.19.1.bb
@@ -1,5 +1,5 @@
MAJOR_VERSION = "2.19"
-PR = "r4"
+PR = "r5"
require util-linux.inc
# note that `lscpu' is under GPLv3+
@@ -44,3 +44,7 @@ addtask remove_lscpu before do_configure after do_patch
# we need to disable it for older versions
EXTRA_OECONF += "ac_cv_func_fallocate=no"
EXTRA_OECONF_virtclass-native += "--disable-fallocate --disable-use-tty-group"
+
+do_install_append () {
+ sed -i -e '1s,.*,#!${bindir}/env perl,' ${D}${bindir}/chkdupexe
+}
--
1.7.5.4
^ permalink raw reply related [flat|nested] 4+ messages in thread* [PATCH 03/03] mc: Ensure perl scripts reference the correct perl
2011-09-26 14:45 [PATCH 00/03] Perl path contamination fixes Richard Purdie
2011-09-26 14:45 ` [PATCH 01/03] openssl: Ensure perl scripts reference the correct perl Richard Purdie
2011-09-26 14:45 ` [PATCH 02/03] util-linux: " Richard Purdie
@ 2011-09-26 14:45 ` Richard Purdie
2 siblings, 0 replies; 4+ messages in thread
From: Richard Purdie @ 2011-09-26 14:45 UTC (permalink / raw)
To: openembedded-core
Without this change the perl path from the build system is used.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
meta/recipes-extended/mc/mc_4.7.5.2.bb | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/meta/recipes-extended/mc/mc_4.7.5.2.bb b/meta/recipes-extended/mc/mc_4.7.5.2.bb
index 6b03be7..59f32ad 100644
--- a/meta/recipes-extended/mc/mc_4.7.5.2.bb
+++ b/meta/recipes-extended/mc/mc_4.7.5.2.bb
@@ -6,7 +6,7 @@ SECTION = "console/utils"
DEPENDS = "ncurses glib-2.0"
RDEPENDS_${PN} = "ncurses-terminfo"
-PR = "r1"
+PR = "r2"
SRC_URI = "http://www.midnight-commander.org/downloads/${BPN}-${PV}.tar.bz2"
@@ -18,3 +18,8 @@ inherit autotools gettext
EXTRA_OECONF = "--with-screen=ncurses --without-gpm-mouse --without-x --without-samba"
FILES_${PN}-dbg += "${libexecdir}/mc/.debug/"
+
+do_install_append () {
+ sed -i -e '1s,#!.*perl,#!${bindir}/env perl,' ${D}${libexecdir}/mc/extfs.d/*
+
+}
--
1.7.5.4
^ permalink raw reply related [flat|nested] 4+ messages in thread