util-linux: Ensure perl scripts reference the correct perl

Without this change the perl path from the build system is used.

(From OE-Core rev: 18ad3a84dacc0d6c107b56874bb23d2a3c0a429f)

(From OE-Core rev: a20e75a83cd5998d7ed6ea7c0c4ea7039c22160a)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2011-09-26 15:34:18 +01:00
parent 51e089403a
commit c1c5eb6866
1 changed files with 5 additions and 1 deletions

View File

@ -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
}