diff options
Diffstat (limited to 'meta/recipes-devtools/autoconf/autoconf.inc')
-rw-r--r-- | meta/recipes-devtools/autoconf/autoconf.inc | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/meta/recipes-devtools/autoconf/autoconf.inc b/meta/recipes-devtools/autoconf/autoconf.inc index 80a5d92914..3ae98c8407 100644 --- a/meta/recipes-devtools/autoconf/autoconf.inc +++ b/meta/recipes-devtools/autoconf/autoconf.inc | |||
@@ -17,6 +17,20 @@ SRC_URI = "${GNU_MIRROR}/autoconf/autoconf-${PV}.tar.bz2 \ | |||
17 | 17 | ||
18 | inherit autotools | 18 | inherit autotools |
19 | 19 | ||
20 | PERLPATH = "${bindir}/perl" | ||
21 | PERLPATH_virtclass-native = "/usr/bin/perl" | ||
22 | PERLPATH_virtclass-nativesdk = "/usr/bin/perl" | ||
23 | |||
20 | do_install_append() { | 24 | do_install_append() { |
21 | rm -rf ${D}${datadir}/emacs | 25 | rm -rf ${D}${datadir}/emacs |
26 | |||
27 | # Some distros have both /bin/perl and /usr/bin/perl, but we set perl location | ||
28 | # for target as /usr/bin/perl, so fix it to /usr/bin/perl. | ||
29 | for i in autoheader autom4te autoreconf autoscan autoupdate ifnames; do | ||
30 | if [ -f ${D}${bindir}/$i ]; then | ||
31 | sed -i -e '1s,#!.*perl,#! ${PERLPATH},' \ | ||
32 | -e 's,exec .*/bin/perl \(.*\) exec .*/bin/perl \(.*\),exec ${PERLPATH} \1 exec ${PERLPATH} \2,' \ | ||
33 | ${D}${bindir}/$i | ||
34 | fi | ||
35 | done | ||
22 | } | 36 | } |