summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGyorgy Sarvari <skandigraun@gmail.com>2025-02-15 19:39:16 +0100
committerKhem Raj <raj.khem@gmail.com>2025-02-15 19:30:23 -0800
commit3564ec12de4b5ed470e75a9e045adc6bec83c74d (patch)
tree9e2a0ee1f41c8d03849b6043a3e8d471af8adfa9
parent94ee7bf2dba87f00f585d8519a11d75809b5d361 (diff)
downloadmeta-openembedded-3564ec12de4b5ed470e75a9e045adc6bec83c74d.tar.gz
nmap: add missing dependency
Building with ndiff PACKAGECONFIG failed with the following error: | File "/yocto/sandbox/build/tmp/work/cortexa53-poky-linux/nmap/7.95/nmap-7.95/ndiff/setup.py", line 11, in <module> | import setuptools.command.install | ModuleNotFoundError: No module named 'setuptools' Fix it by adding the missing dependency. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-security/nmap/nmap_7.95.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-security/nmap/nmap_7.95.bb b/meta-oe/recipes-security/nmap/nmap_7.95.bb
index f165e47bf5..f3775f24b0 100644
--- a/meta-oe/recipes-security/nmap/nmap_7.95.bb
+++ b/meta-oe/recipes-security/nmap/nmap_7.95.bb
@@ -27,7 +27,7 @@ PACKAGECONFIG[libz] = "--with-libz=${STAGING_LIBDIR}/.., --without-libz, zlib, z
27#disable/enable packages 27#disable/enable packages
28PACKAGECONFIG[nping] = ",--without-nping," 28PACKAGECONFIG[nping] = ",--without-nping,"
29PACKAGECONFIG[ncat] = ",--without-ncat," 29PACKAGECONFIG[ncat] = ",--without-ncat,"
30PACKAGECONFIG[ndiff] = "--with-ndiff=yes,--without-ndiff,python3" 30PACKAGECONFIG[ndiff] = "--with-ndiff=yes,--without-ndiff,python3 python3-setuptools-native"
31PACKAGECONFIG[update] = ",--without-nmap-update," 31PACKAGECONFIG[update] = ",--without-nmap-update,"
32 32
33EXTRA_OECONF = "--with-libdnet=included --with-liblinear=included --without-subversion --with-liblua=included" 33EXTRA_OECONF = "--with-libdnet=included --with-liblinear=included --without-subversion --with-liblua=included"