diff options
author | Eneas U de Queiroz <cotequeiroz@gmail.com> | 2021-10-25 18:10:01 -0300 |
---|---|---|
committer | Eneas U de Queiroz <cotequeiroz@gmail.com> | 2021-11-03 13:34:16 -0300 |
commit | 206eaae16520f5e89af5219cf574fa649e64d7e1 (patch) | |
tree | f7b7755e853268fac950975fb9759799f1d5df9e /libs/gnutls/Makefile | |
parent | ae203538ea50b06d1edad4f534c1d5acc92893a8 (diff) |
gnutls: don't run aclocal --install
Remove the --install parameter when running aclocal. The --install
argument is used to copy third-party files to the first -I directory.
gnutls has -I m4 first, which would copy files to its local build
directory. However, openwrt prepends the staging dir m4 directory,
causing aclocal --install to copy an old definition of
ax_code_coverage.m4 into the staging dir.
If strace is built after gnutls, compilation will fail:
Makefile:9303: *** missing separator. Stop.
The version of ax_code_coverage.m4 that gets installed does not define
@CODE_COVERAGE_RULES@.
Removing the --install parameter in gnutls solves the issue.
Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
Diffstat (limited to 'libs/gnutls/Makefile')
-rw-r--r-- | libs/gnutls/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/gnutls/Makefile b/libs/gnutls/Makefile index f68671fcf..5fef6568c 100644 --- a/libs/gnutls/Makefile +++ b/libs/gnutls/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=gnutls PKG_VERSION:=3.7.1 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_USE_MIPS16:=0 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz |