about summary refs log tree commit diff
path: root/docs/custom_mutators.md
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2022-11-01 14:05:31 +0100
committervanhauser-thc <vh@thc.org>2022-11-01 14:05:31 +0100
commitc058ce37bbd578be91b8c5d26161ecb281568725 (patch)
tree11e3841264d804d4307fb5a3e2e8f132283a5c0e /docs/custom_mutators.md
parent9dab653563e85a8aca24d3ec3f9e1c66dff5e110 (diff)
downloadafl++-c058ce37bbd578be91b8c5d26161ecb281568725.tar.gz
remove python2 reference
Diffstat (limited to 'docs/custom_mutators.md')
-rw-r--r--docs/custom_mutators.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/custom_mutators.md b/docs/custom_mutators.md
index 6b72430a..ffd3cce8 100644
--- a/docs/custom_mutators.md
+++ b/docs/custom_mutators.md
@@ -269,10 +269,10 @@ sudo apt install python-dev
 ```
 
 Then, AFL++ can be compiled with Python support. The AFL++ Makefile detects
-Python 2 and 3 through `python-config` if it is in the PATH and compiles
-`afl-fuzz` with the feature if available.
+Python3 through `python-config`/`python3-config` if it is in the PATH and
+compiles `afl-fuzz` with the feature if available.
 
-Note: for some distributions, you might also need the package `python[23]-apt`.
+Note: for some distributions, you might also need the package `python[3]-apt`.
 In case your setup is different, set the necessary variables like this:
 `PYTHON_INCLUDE=/path/to/python/include LDFLAGS=-L/path/to/python/lib make`.