aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/automake
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2012-08-07 22:34:17 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-08-07 23:35:54 +0100
commit1e873271362b770381903098d46c4aec164d81de (patch)
tree6671915ea4054695debe849de5dd5b0173888578 /meta/recipes-devtools/automake
parentb033000900ef2082a2d2d2be3e36b6b813309902 (diff)
downloadopenembedded-core-1e873271362b770381903098d46c4aec164d81de.tar.gz
automake: Fix version reference in path substitutions
Without this the substitutions don't get made potentially resulting in a variety of different failures. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/automake')
-rw-r--r--meta/recipes-devtools/automake/automake_1.12.1.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/automake/automake_1.12.1.bb b/meta/recipes-devtools/automake/automake_1.12.1.bb
index a1e37d471c..2a97bcc9aa 100644
--- a/meta/recipes-devtools/automake/automake_1.12.1.bb
+++ b/meta/recipes-devtools/automake/automake_1.12.1.bb
@@ -42,7 +42,7 @@ SRC_URI += "${PATHFIXPATCH} \
SRC_URI[md5sum] = "ec25c1855cacf47e4bdee76a776b96ba"
SRC_URI[sha256sum] = "24bf1640679ba4a9cbe2d36422f39a81eced7f556b576a7a2ccfc70ca85a1e2f"
-PR = "r0"
+PR = "r1"
do_install () {
oe_runmake 'DESTDIR=${D}' install
@@ -50,7 +50,7 @@ do_install () {
# Some distros have both /bin/perl and /usr/bin/perl, but we set perl location
# for target as /usr/bin/perl, so fix it to /usr/bin/perl.
- for i in aclocal aclocal-1.11 automake automake-1.11; do
+ for i in aclocal aclocal-1.12 automake automake-1.12; do
if [ -f ${D}${bindir}/$i ]; then
sed -i -e '1s,#!.*perl,#! ${USRBINPATH}/perl,' \
-e 's,exec .*/bin/perl \(.*\) exec .*/bin/perl \(.*\),exec ${USRBINPATH}/perl \1 exec ${USRBINPATH}/perl \2,' \