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

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

this causes automake-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 automake-nativesdk-1.11.2-r2.x86_64
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/automake/automake_1.11.2.bb