From 9861213ad6449507bb4fa6003361da9e2bc6fd8c Mon Sep 17 00:00:00 2001 From: Dominik Maier Date: Mon, 3 Feb 2020 19:29:53 +0100 Subject: fixed build on python 3.8 --- Makefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index da3d0766..9a31dee0 100644 --- a/Makefile +++ b/Makefile @@ -63,24 +63,24 @@ CFLAGS += -Wall -g -Wno-pointer-sign -I include/ \ AFL_FUZZ_FILES = $(wildcard src/afl-fuzz*.c) -ifneq "$(shell which python3m)" "" - ifneq "$(shell which python3m-config)" "" +ifneq "$(shell which python3m 2>/dev/null)" "" + ifneq "$(shell which python3m-config 2>/dev/null)" "" PYTHON_INCLUDE ?= $(shell python3m-config --includes) - PYTHON_LIB ?= $(shell python3m-config --ldflags) + PYTHON_LIB ?= $(shell python3m-config --libs --embed) PYTHON_VERSION ?= $(strip $(shell python3m --version 2>&1)) endif endif -ifneq "$(shell which python3)" "" - ifneq "$(shell which python3-config)" "" +ifneq "$(shell which python3 2>/dev/null)" "" + ifneq "$(shell which python3-config 2>/dev/null)" "" PYTHON_INCLUDE ?= $(shell python3-config --includes) - PYTHON_LIB ?= $(shell python3-config --ldflags) + PYTHON_LIB ?= $(shell python3-config --libs --embed) PYTHON_VERSION ?= $(strip $(shell python3 --version 2>&1)) endif endif -ifneq "$(shell which python)" "" - ifneq "$(shell which python-config)" "" +ifneq "$(shell which python 2>/dev/null)" "" + ifneq "$(shell which python-config 2>/dev/null)" "" PYTHON_INCLUDE ?= $(shell python-config --includes) PYTHON_LIB ?= $(shell python-config --ldflags) PYTHON_VERSION ?= $(strip $(shell python --version 2>&1)) -- cgit 1.4.1