[Buildroot] [PATCH] nmap: make ndiff conditional on python2

Gustavo Zacarias gustavo at zacarias.com.ar
Thu Apr 17 20:25:10 UTC 2014


ndiff only works when target python2 is available, so disable it
completely when it's not. Fixes:
http://autobuild.buildroot.net/results/402/40269fd96a3b62fa187e9b26e5ab4ce4e7711f95/

Signed-off-by: Gustavo Zacarias <gustavo at zacarias.com.ar>
---
 package/nmap/nmap.mk | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/package/nmap/nmap.mk b/package/nmap/nmap.mk
index 4ed39bf..c7e2225 100644
--- a/package/nmap/nmap.mk
+++ b/package/nmap/nmap.mk
@@ -21,4 +21,11 @@ else
 NMAP_CONF_OPT += --without-openssl
 endif
 
+# ndiff only works with python2.x
+ifeq ($(BR2_PACKAGE_PYTHON),y)
+NMAP_DEPENDENCIES += python
+else
+NMAP_CONF_OPT += --without-ndiff
+endif
+
 $(eval $(autotools-package))
-- 
1.8.3.2



More information about the buildroot mailing list