diff options
author | Gyorgy Sarvari <skandigraun@gmail.com> | 2025-02-15 19:39:16 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-02-15 19:30:23 -0800 |
commit | 3564ec12de4b5ed470e75a9e045adc6bec83c74d (patch) | |
tree | 9e2a0ee1f41c8d03849b6043a3e8d471af8adfa9 | |
parent | 94ee7bf2dba87f00f585d8519a11d75809b5d361 (diff) | |
download | meta-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.bb | 2 |
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 |
28 | PACKAGECONFIG[nping] = ",--without-nping," | 28 | PACKAGECONFIG[nping] = ",--without-nping," |
29 | PACKAGECONFIG[ncat] = ",--without-ncat," | 29 | PACKAGECONFIG[ncat] = ",--without-ncat," |
30 | PACKAGECONFIG[ndiff] = "--with-ndiff=yes,--without-ndiff,python3" | 30 | PACKAGECONFIG[ndiff] = "--with-ndiff=yes,--without-ndiff,python3 python3-setuptools-native" |
31 | PACKAGECONFIG[update] = ",--without-nmap-update," | 31 | PACKAGECONFIG[update] = ",--without-nmap-update," |
32 | 32 | ||
33 | EXTRA_OECONF = "--with-libdnet=included --with-liblinear=included --without-subversion --with-liblua=included" | 33 | EXTRA_OECONF = "--with-libdnet=included --with-liblinear=included --without-subversion --with-liblua=included" |