main/nmap: fix build with automake 1.17

This fixes the "aclocal-1.16: not found" error (on all archs):
https://build.alpinelinux.org/buildlogs/build-edge-loongarch64/main/nmap/nmap-7.95-r0.log
This commit is contained in:
Jingyun Hua 2024-08-22 02:58:07 +00:00 committed by Celeste
parent ed07f59397
commit da73517e75

View File

@ -1,7 +1,7 @@
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org> # Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
pkgname=nmap pkgname=nmap
pkgver=7.95 pkgver=7.95
pkgrel=0 pkgrel=1
pkgdesc="network exploration tool and security/port scanner" pkgdesc="network exploration tool and security/port scanner"
url="https://nmap.org" url="https://nmap.org"
arch="all" arch="all"
@ -9,6 +9,7 @@ license="custom"
makedepends=" makedepends="
autoconf autoconf
automake automake
libtool
libpcap-dev libpcap-dev
libssh2-dev libssh2-dev
linux-headers linux-headers
@ -36,6 +37,8 @@ source="https://nmap.org/dist/nmap-$pkgver.tar.bz2
prepare() { prepare() {
default_prepare default_prepare
update_config_sub update_config_sub
autoreconf libpcre libdnet-stripped -ivf
} }
build() { build() {