From 69a3f06f997add3caff7cfe35e85c0da22018696 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Mon, 19 Sep 2016 03:46:29 +0200 Subject: [PATCH] Install python modules to /usr On Debian python-setuptools is configured to install into /usr/local by default. --- imgconverter/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgconverter/Makefile b/imgconverter/Makefile index 2a1e3bf..72014c2 100644 --- a/imgconverter/Makefile +++ b/imgconverter/Makefile @@ -7,7 +7,7 @@ clean: .PHONY: clean install: - python setup.py install -O1 --skip-build --root $(DESTDIR) + python setup.py install -O1 --skip-build --prefix=/usr --root $(DESTDIR) #ifeq (1,${DEBIANBUILD}) # cp *.py $(DESTDIR)/$(PYTHON_SITEARCH)/qubes/ #else