summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2024-12-19 14:11:50 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-12-20 12:47:19 +0000
commitc438450bea8e6a9353efa7137b78fa578100cd51 (patch)
tree2b6b949be684a2b537bf26e95dd3b4456db90d1a
parent4225b7fd4a964877cb249da0a3907ac74978e757 (diff)
downloadpoky-c438450bea8e6a9353efa7137b78fa578100cd51.tar.gz
expect: don't run aclocal in do_configure
expect has a hand-maintained aclocal.m4 so don't run aclocal, which has the side effect of not deleting the aclocal.m4 file which pulls in macros. The build works without this change more through luck and a combination of behaviours than design. (From OE-Core rev: 99fee9f51eb991207dea136465c18735ef833cca) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-devtools/expect/expect_5.45.4.bb2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-devtools/expect/expect_5.45.4.bb b/meta/recipes-devtools/expect/expect_5.45.4.bb
index 3d50a8f25a..3886a5771a 100644
--- a/meta/recipes-devtools/expect/expect_5.45.4.bb
+++ b/meta/recipes-devtools/expect/expect_5.45.4.bb
@@ -39,6 +39,8 @@ UPSTREAM_CHECK_REGEX = "/Expect/(?P<pver>(\d+[\.\-_]*)+)/"
39 39
40S = "${WORKDIR}/${BPN}${PV}" 40S = "${WORKDIR}/${BPN}${PV}"
41 41
42EXTRA_AUTORECONF += "--exclude=aclocal"
43
42do_install:append() { 44do_install:append() {
43 install -d ${D}${libdir} 45 install -d ${D}${libdir}
44 install -m 0755 ${D}${libdir}/expect${PV}/libexpect*.so ${D}${libdir}/ 46 install -m 0755 ${D}${libdir}/expect${PV}/libexpect*.so ${D}${libdir}/