about summary refs log tree commit diff
path: root/GNUmakefile
diff options
context:
space:
mode:
authorRuben ten Hove <git@rhtenhove.nl>2020-05-14 16:56:40 +0200
committerDominik Maier <domenukk@gmail.com>2020-05-14 21:49:36 +0200
commit867f948bb22688bc2ca250f3cc28402662cc1b0c (patch)
tree4bb34c5bcf1d5822dedf15e0f59509ee4a8b3dda /GNUmakefile
parent767ed8c5da985601dbd956cd3776abfa3a86cff8 (diff)
downloadafl++-867f948bb22688bc2ca250f3cc28402662cc1b0c.tar.gz
create temp symlink to python3 for qemu mode if python isn't found
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index fd43e11a..8bdd642e 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -105,7 +105,7 @@ ifneq "$(shell command -v python3m 2>/dev/null)" ""
   ifneq "$(shell command -v python3m-config 2>/dev/null)" ""
     PYTHON_INCLUDE  ?= $(shell python3m-config --includes)
     PYTHON_VERSION  ?= $(strip $(shell python3m --version 2>&1))
-    # Starting with python3.8, we need to pass the `embed` flag. Earier versions didn't know this flag.
+    # Starting with python3.8, we need to pass the `embed` flag. Earlier versions didn't know this flag.
     ifeq "$(shell python3m-config --embed --libs 2>/dev/null | grep -q lpython && echo 1 )" "1"
       PYTHON_LIB      ?= $(shell python3m-config --libs --embed --ldflags)
     else