aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2022-12-21 14:08:20 -0300
committerArnaldo Carvalho de Melo <acme@redhat.com>2022-12-21 14:52:42 -0300
commitc3c2e8ebe365ae028ec82ceab039b2035875b6d5 (patch)
tree29f5fed980c34d95dd9e3c94c476badeae2e9558
parent5fe089d3a3eb4c1cd416993cd4bc7e3c0c30297a (diff)
downloadlinux-c3c2e8ebe365ae028ec82ceab039b2035875b6d5.tar.gz
perf build: Remove explicit reference to python 2.x devel files
If the libpython feature test (tools/build/feature/test-libpython.c) fails, then the python-devel is missing, it doesn't mattere if it is for python2 or 3, remove that explicit 2.x reference. Reported-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r--tools/perf/Makefile.config2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/Makefile.config b/tools/perf/Makefile.config
index c21bd6010be138..c2504c39bdcb89 100644
--- a/tools/perf/Makefile.config
+++ b/tools/perf/Makefile.config
@@ -886,7 +886,7 @@ else
else
ifneq ($(feature-libpython), 1)
- $(call disable-python,No 'Python.h' (for Python 2.x support) was found: disables Python support - please install python-devel/python-dev)
+ $(call disable-python,No 'Python.h' was found: disables Python support - please install python-devel/python-dev)
else
LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
EXTLIBS += $(PYTHON_EMBED_LIBADD)