diff options
author | Karel Kočí <karel.koci@nic.cz> | 2020-04-29 12:47:58 +0200 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2020-05-20 15:37:16 +0200 |
commit | 3c1d1d4332c7fbaccea01b92b28f6d96f7222492 (patch) | |
tree | 77dbca603838ffa2cacc279a0358a77f2fdb5792 /tools/Makefile | |
parent | 1b2fefb244d7d2fd949104e743ff15d01bbe5bb0 (diff) | |
download | upstream-3c1d1d4332c7fbaccea01b92b28f6d96f7222492.tar.gz upstream-3c1d1d4332c7fbaccea01b92b28f6d96f7222492.tar.bz2 upstream-3c1d1d4332c7fbaccea01b92b28f6d96f7222492.zip |
tools: add autoconf-archive
Some autotools based build systems are using autoconf-archive scripts
and are expecting them to almost always be available. This is not
required for regular releases as tar balls generated for releases
commonly have existing configure script. This is rather intended to be
used with autotools.mk's autoreconf and in cases it is not always
possible to get release tar ball.
Including this adds little to no overhead in terms of build time as
those are just m4 scripts copied to an appropriate location.
Signed-off-by: Karel Kočí <karel.koci@nic.cz>
[fixed From: to match SoB]
Signed-off-by: Petr Štetiar <ynezz@true.cz>
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile index 02556d4b83..aaaef95046 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -22,7 +22,7 @@ ifneq ($(CONFIG_SDK)$(CONFIG_PACKAGE_kmod-b43)$(CONFIG_PACKAGE_b43legacy-firmwar endif tools-$(BUILD_TOOLCHAIN) += gmp mpfr mpc libelf expat -tools-y += m4 libtool autoconf automake flex bison pkgconf mklibs zlib +tools-y += m4 libtool autoconf autoconf-archive automake flex bison pkgconf mklibs zlib tools-y += sstrip make-ext4fs e2fsprogs mtd-utils mkimage tools-y += firmware-utils patch-image quilt padjffs2 tools-y += mm-macros missing-macros cmake bc findutils gengetopt patchelf |