nmap: enable parallel builds again

This commit is contained in:
Thomas Penteker 2014-05-13 12:04:10 +02:00
parent a1bcade0f6
commit e9ba8a433a

View File

@ -14,12 +14,12 @@ build () {
cd $name-$version
./configure --prefix=/usr --libexecdir=/usr/lib --mandir=/usr/man \
--with-libpcre=included --with-liblua=included \
--without-zenmap --without-ndiff --disable-nls
--without-zenmap --without-ndiff --disable-nls \
--without-nmap-update
#install -d $PKG/usr/share/nmap
make
make -j1 DESTDIR=$PKG install
rm -rf $PKG/usr/man/man1/zenmap.*
make DESTDIR=$PKG install
rm -f $PKG/usr/share/nmap/nselib/data/psexec/README
}