about summary refs log tree commit diff
diff options
context:
space:
mode:
authorhexcoder- <heiko@hexco.de>2020-05-14 23:23:55 +0200
committerhexcoder- <heiko@hexco.de>2020-05-14 23:23:55 +0200
commit13033034dbd0cd6d18c6dd26eb04d42933493dc7 (patch)
treea34bae282fdff1df3810146a7a79f9dbc1a7de80
parent749c63d3b3b46e8293898155880ff0ce37edd60c (diff)
downloadafl++-13033034dbd0cd6d18c6dd26eb04d42933493dc7.tar.gz
nuicornafl build script fix setuptools check
-rwxr-xr-xunicorn_mode/build_unicorn_support.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/unicorn_mode/build_unicorn_support.sh b/unicorn_mode/build_unicorn_support.sh
index 0405cbcd..79a5a4a9 100755
--- a/unicorn_mode/build_unicorn_support.sh
+++ b/unicorn_mode/build_unicorn_support.sh
@@ -109,7 +109,7 @@ PYTHONS="`command -v python3` `command -v python` `command -v python2`"
 EASY_INSTALL_FOUND=0
 for PYTHON in $PYTHONS ; do
 
-  if $PYTHON -c "help('$EASY_INSTALL');" </dev/null | grep -q module ; then
+  if $PYTHON -c "import setuptools" ; then
 
     EASY_INSTALL_FOUND=1
     PYTHONBIN=$PYTHON