diff options
author | hexcoder- <heiko@hexco.de> | 2020-01-18 16:28:13 +0100 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-01-18 16:28:13 +0100 |
commit | 00b1d16ac61e9f86cd0c1defec6299e0a5e3fdde (patch) | |
tree | b5404086021125cb4497ad429bb85aaa7cce662e | |
parent | 6b0950b03d8a9fd0c21b4be71fd4a4bd6ab68547 (diff) | |
download | afl++-00b1d16ac61e9f86cd0c1defec6299e0a5e3fdde.tar.gz |
more fixes for python checks
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile index df5ad048..dbb37feb 100644 --- a/Makefile +++ b/Makefile @@ -60,12 +60,12 @@ ifneq "$(filter %3.7m, $(shell python3.7m-config --includes 2>/dev/null))" "" PYTHON_LIB ?= $(shell python3.7m-config --ldflags) PYTHON_VERSION = 3.7m else - ifneq "$(filter %3.7, $(shell python3.7-config --includes) 2> /dev/null)" "" + ifneq "$(filter %3.7, $(shell python3.7-config --includes 2>/dev/null))" "" PYTHON_INCLUDE ?= $(shell python3.7-config --includes) PYTHON_LIB ?= $(shell python3.7-config --ldflags) PYTHON_VERSION = 3.7 else - ifneq "$(filter %2.7, $(shell python2.7-config --includes) 2> /dev/null)" "" + ifneq "$(filter %2.7, $(shell python2.7-config --includes 2>/dev/null))" "" PYTHON_INCLUDE ?= $(shell python2.7-config --includes) PYTHON_LIB ?= $(shell python2.7-config --ldflags) PYTHON_VERSION = 2.7 |