From 193b57e1eaaf3a5392b9c39c1f001d5c50478d2c Mon Sep 17 00:00:00 2001 From: actionless Date: Mon, 19 Aug 2024 05:11:26 +0200 Subject: [PATCH] fix(makefile): fix detecting python3 on ubuntu --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 331a9e1d..638cd94e 100644 --- a/Makefile +++ b/Makefile @@ -7,9 +7,9 @@ DEST_PLUGIN_DIR = $(DESTDIR)$(APPDIR)/plugins DEST_PREFIX = $(DESTDIR)$(PREFIX) SHELL := bash -PYTHON := $(shell which python) +PYTHON := $(shell which python3) ifeq (,$(PYTHON)) -$(error Can't find Python) +$(error Can't find `python3`) endif # lint: