diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-09-26 15:34:49 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-09-28 21:50:41 +0100 |
commit | feff6030091d519a0738e2a5db47654dcd13ef13 (patch) | |
tree | 8db789b2bd59bb32330561949afa9c55246c4c88 /meta/recipes-extended/mc | |
parent | 1ed8fb66c51ce584c13e592176a69a61bae01f2e (diff) | |
download | openembedded-core-feff6030091d519a0738e2a5db47654dcd13ef13.tar.gz openembedded-core-feff6030091d519a0738e2a5db47654dcd13ef13.tar.bz2 openembedded-core-feff6030091d519a0738e2a5db47654dcd13ef13.zip |
mc: Ensure perl scripts reference the correct perl
Without this change the perl path from the build system is used.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/mc')
-rw-r--r-- | 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 6b03be7415..59f32ad369 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/* + +} |