@@ -25,7 +25,6 @@ EXTRA_OECONF = " \
--without-dag \
--without-dpdk \
"
-EXTRA_AUTORECONF += "--exclude=aclocal"
PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'bluetooth', 'bluez5', '', d)} \
${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)} \
@@ -66,8 +66,6 @@ PACKAGECONFIG[hostkey-rsa] = ""
PACKAGECONFIG[hostkey-ecdsa] = ""
PACKAGECONFIG[hostkey-ed25519] = ""
-EXTRA_AUTORECONF += "--exclude=aclocal"
-
# login path is hardcoded in sshd
EXTRA_OECONF = "'LOGIN_PROGRAM=${base_bindir}/login' \
${@bb.utils.contains('DISTRO_FEATURES', 'pam', '--with-pam', '--without-pam', d)} \
@@ -17,8 +17,6 @@ SRC_URI[sha256sum] = "5ebc636b7f427053f98806696521653a614c7e06464910353cbf54e232
inherit autotools
-EXTRA_AUTORECONF += "--exclude=autoheader"
-
EXTRA_OECONF += "ac_cv_have_z_modifier=yes \
ac_cv_header_bsd_libutil_h=no \
sc_cv_termios_ispeed=no \
@@ -17,9 +17,6 @@ SRC_URI += "file://inputrc"
inherit autotools texinfo
-# Ensure we don't delete the shipped aclocal.m4 or config.h.in
-EXTRA_AUTORECONF += "--exclude=autoheader,aclocal"
-
EXTRA_OECONF += "bash_cv_termcap_lib=ncurses --with-shared-termcap-library"
LEAD_SONAME = "libreadline.so"
@@ -17,8 +17,6 @@ SRC_URI[sha256sum] = "89f9294a8ac74fcef6f1b9ac408f43ebedf8d208e3efe0b99b4acc16dc
inherit autotools gettext ptest
-EXTRA_AUTORECONF += "--exclude=aclocal"
-
LDFLAGS += "${TOOLCHAIN_OPTIONS}"
do_install_ptest() {
@@ -39,8 +39,6 @@ UPSTREAM_CHECK_REGEX = "/Expect/(?P<pver>(\d+[\.\-_]*)+)/"
S = "${UNPACKDIR}/${BPN}${PV}"
-EXTRA_AUTORECONF += "--exclude=aclocal"
-
CFLAGS += "-std=gnu17"
do_install:append() {
@@ -10,10 +10,6 @@ SRC_URI[sha256sum] = "4d7e4fdef2eca6afe07a2682151cea78781e0a4e8f9622142d9f70c083
inherit autotools
-# This is a hand-maintained aclocal.m4 but our autotools class currently deletes
-# aclocal.m4.
-EXTRA_AUTORECONF += "--exclude=aclocal"
-
EXTRA_OECONF = "--disable-nls"
do_install:append () {
@@ -28,8 +28,6 @@ CLEANBROKEN = "1"
EXTRA_OECONF = "--with-perl='${USRBINPATH}/env perl' --with-patch=patch --without-sendmail"
EXTRA_OECONF:append:class-native = " --disable-nls"
-EXTRA_AUTORECONF += "--exclude=aclocal"
-
CACHED_CONFIGUREVARS += "ac_cv_path_BASH=/bin/bash ac_cv_path_COLUMN=column"
# Make sure we don't have "-w" in shebang lines: it breaks using
@@ -34,8 +34,6 @@ UPSTREAM_CHECK_URI = "https://www.ruby-lang.org/en/downloads/"
inherit autotools ptest pkgconfig
-EXTRA_AUTORECONF += "--exclude=aclocal"
-
# This snippet lets compiled extensions which rely on external libraries,
# such as zlib, compile properly. If we don't do this, then when extmk.rb
# runs, it uses the native libraries instead of the target libraries, and so
@@ -42,8 +42,6 @@ EXTRA_OEMAKE += "pkgconfig_dir=${libdir}/pkgconfig"
CPPFLAGS += "-P"
BUILD_CPPFLAGS += "-P"
-EXTRA_AUTORECONF += "--exclude=aclocal"
-
do_configure:prepend () {
# autogen.sh manually puts things in the right place, and libtoolize doesn't
# work as they don't use aclocal
@@ -34,7 +34,6 @@ VER = "${PV}"
inherit autotools ptest binconfig
AUTOTOOLS_SCRIPT_PATH = "${S}/unix"
-EXTRA_AUTORECONF = "--exclude=aclocal"
EXTRA_OECONF = "--disable-rpath --enable-man-suffix=tcl9 --disable-zipfs"
@@ -38,7 +38,6 @@ VER = "${PV}"
inherit autotools ptest binconfig
AUTOTOOLS_SCRIPT_PATH = "${S}/unix"
-EXTRA_AUTORECONF = "--exclude=aclocal"
EXTRA_OECONF = "--enable-threads --disable-rpath --enable-man-suffix=tcl8"
@@ -7,7 +7,6 @@ DEPENDS = "ncurses bison-native virtual/libiconv"
inherit autotools gettext texinfo update-alternatives ptest
-EXTRA_AUTORECONF += "--exclude=autoheader,aclocal"
EXTRA_OECONF = "--enable-job-control --without-bash-malloc bash_cv_wexitstatus_offset=8"
# If NON_INTERACTIVE_LOGIN_SHELLS is defined, all login shells read the
@@ -63,8 +63,6 @@ EXTRA_OECONF = " \
DSOFLAGS='${LDFLAGS}' \
"
-EXTRA_AUTORECONF += "--exclude=autoheader"
-
do_install () {
oe_runmake "BUILDROOT=${D}" install
@@ -36,9 +36,6 @@ EXTRA_OECONF = "--enable-xim \
PACKAGECONFIG ??= ""
PACKAGECONFIG[startup] = "--enable-startup-notification,--disable-startup-notification,startup-notification,"
-# Ensure we don't delete the shipped aclocal.m4
-EXTRA_AUTORECONF += "--exclude=aclocal"
-
do_compile:prepend () {
echo '#define UTMP_FILE "${localstatedir}/run/utmp"' >> config.h
echo '#define WTMP_FILE "${localstatedir}/log/wtmp"' >> config.h
@@ -26,8 +26,6 @@ UPSTREAM_CHECK_REGEX = "nettle-(?P<pver>\d+(\.\d+)+)\.tar"
inherit autotools ptest multilib_header lib_package
-EXTRA_AUTORECONF += "--exclude=aclocal"
-
EXTRA_OECONF = "--disable-openssl"
EXTRA_OECONF:append:armv7a = "${@bb.utils.contains("TUNE_FEATURES","neon",""," --disable-arm-neon --disable-fat",d)}"
With autoconf 2.73 autoreconf is better at not forcibly running aclocal or autoheader if the relevant files are not managed by those tools. This means we can remove a number of explicit excludes as they are no longer needed. Signed-off-by: Ross Burton <ross.burton@arm.com> --- meta/recipes-connectivity/libpcap/libpcap_1.10.6.bb | 1 - meta/recipes-connectivity/openssh/openssh_10.2p1.bb | 2 -- meta/recipes-connectivity/socat/socat_1.8.1.1.bb | 2 -- meta/recipes-core/readline/readline.inc | 3 --- meta/recipes-devtools/diffstat/diffstat_1.68.bb | 2 -- meta/recipes-devtools/expect/expect_5.45.4.bb | 2 -- meta/recipes-devtools/help2man/help2man_1.49.3.bb | 4 ---- meta/recipes-devtools/quilt/quilt.inc | 2 -- meta/recipes-devtools/ruby/ruby_4.0.1.bb | 2 -- meta/recipes-devtools/subversion/subversion_1.14.5.bb | 2 -- meta/recipes-devtools/tcltk/tcl_9.0.3.bb | 1 - meta/recipes-devtools/tcltk8/tcl8_8.6.17.bb | 1 - meta/recipes-extended/bash/bash.inc | 1 - meta/recipes-extended/cups/cups.inc | 2 -- meta/recipes-sato/rxvt-unicode/rxvt-unicode.inc | 3 --- meta/recipes-support/nettle/nettle_3.10.2.bb | 2 -- 16 files changed, 32 deletions(-)