From f3b7ed2f8d9417e645374daed364006d47fc5c9b Mon Sep 17 00:00:00 2001 From: Papoteur Date: Sun, 7 Oct 2018 22:14:37 +0200 Subject: Correction of error in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a3e1b16..d6d0331 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ PREFIX=/usr BINDIR=$(PREFIX)/bin SBINDIR=$(PREFIX)/sbin -LIBDIR := $(shell $(PYTHON_PROGRAM) -c "from __future__ import print_function; from distutils.sysconfig import get_python_lib; print(get_python_lib())") +LIBDIR=$(shell python3 -c "from __future__ import print_function; from distutils.sysconfig import get_python_lib; print(get_python_lib())") LIBEXECDIR=$(PREFIX)/libexec POLKITPOLICYDIR=$(PREFIX)/share/polkit-1/actions DATADIR=$(PREFIX)/share -- cgit v1.2.1