nmap: fix build issue (#30429)

This commit is contained in:
WYF
2022-05-07 09:02:26 +08:00
committed by GitHub
parent dfdbd1151d
commit 654a07d642

View File

@@ -43,6 +43,9 @@ class Nmap(AutotoolsPackage):
def configure_args(self): def configure_args(self):
args = [] args = []
# https://github.com/nmap/nmap/issues/2144
args.append("--disable-rdma")
args += self.with_or_without('liblua') args += self.with_or_without('liblua')
args += self.with_or_without('ncat') args += self.with_or_without('ncat')
args += self.with_or_without('ndiff') args += self.with_or_without('ndiff')