Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 00/03] Perl path contamination fixes
@ 2011-09-26 14:45 Richard Purdie
  2011-09-26 14:45 ` [PATCH 01/03] openssl: Ensure perl scripts reference the correct perl Richard Purdie
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Richard Purdie @ 2011-09-26 14:45 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit ed2a606909b9490ac57a3ad3db7a15e83a8664f9:

  neon: Add libproxy to DEPENDS to ensure determinstic builds (2011-09-25 15:54:55 +0100)

are available in the git repository at:
  git://git.openembedded.org/openembedded-core-contrib rpurdie/master2
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rpurdie/master2

and fix perl path contamination issues from the build system.

Richard Purdie (3):
  openssl: Ensure perl scripts reference the correct perl
  util-linux: Ensure perl scripts reference the correct perl
  mc: Ensure perl scripts reference the correct perl




^ permalink raw reply	[flat|nested] 4+ messages in thread

* [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

end of thread, other threads:[~2011-09-26 14:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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 ` [PATCH 03/03] mc: " Richard Purdie

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox