]> code.ossystems Code Review - openembedded-core.git/commit
autoconf-nativesdk: fix builds on fedora 17
authorRobert Yang <liezhi.yang@windriver.com>
Mon, 16 Apr 2012 09:15:58 +0000 (17:15 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 16 Apr 2012 21:52:39 +0000 (22:52 +0100)
commit393908e53b243b16ab984da7f073be371e062946
treebf5a48a9321b647c2493741e3b524857a8dbf064
parent13e6e316d751d0ea3107d5547f6bdd2b74919cad
autoconf-nativesdk: fix builds on fedora 17

Generally distros keep perl at /usr/bin/perl
Fedora 17 also has /bin/perl

this causes autoconf-nativesdk build on such distros to put perl
interpreter path in the perl scripts as /bin/perl

But we set perl location for target as /usr/bin/perl

This mismatch of perl path causes failure of rootfs image creation
like this:

| error: Failed dependencies:
|       /bin/perl is needed by autoconf-nativesdk-2.68-r6.x86_64.rpm
NOTE: package meta-toolchain-gmae-1.0-r7: task do_populate_sdk: Failed

The second sed command is for such a case:

eval 'case $# in 0) exec /bin/perl -S "$0";; *) exec /bin/perl -S "$0" "$@";; esac'

This line has two "/bin/perl" and we can't use a line number to tell
sed which line it is since the line numbers in different files are
defferent.

[YOCTO #2304]

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
meta/recipes-devtools/autoconf/autoconf.inc
meta/recipes-devtools/autoconf/autoconf_2.68.bb