diff options
author | Papoteur <papoteur@mageia.org> | 2018-10-07 22:14:37 +0200 |
---|---|---|
committer | Papoteur <papoteur@mageia.org> | 2018-10-07 22:15:26 +0200 |
commit | e78133a14131220aeae32efa940c378fb72cf00a (patch) | |
tree | 9f71bacf83accc8c33da3ac16225aba819d50fb0 | |
parent | b1adacff74bef360bfe67960fa5e624b55c981e3 (diff) | |
download | isodumper-e78133a14131220aeae32efa940c378fb72cf00a.tar isodumper-e78133a14131220aeae32efa940c378fb72cf00a.tar.gz isodumper-e78133a14131220aeae32efa940c378fb72cf00a.tar.bz2 isodumper-e78133a14131220aeae32efa940c378fb72cf00a.tar.xz isodumper-e78133a14131220aeae32efa940c378fb72cf00a.zip |
Correction of error in Makefile
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |