From a176d587b7d66ba37f07e9f122be4b6664553e92 Mon Sep 17 00:00:00 2001 From: Petr Lautrbach Date: Thu, 14 Sep 2017 07:50:26 +0200 Subject: [PATCH 14/19] framework: Allow to specify 'setup.py install --prefix' via $PREFIX variable In recent Fedora, there's a change which makes default prefix to be /usr/local and we need to use /usr Usage: make PREFIX=/usr/ install --- framework/src/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/framework/src/Makefile.am b/framework/src/Makefile.am index b0e87da..725cb96 100644 --- a/framework/src/Makefile.am +++ b/framework/src/Makefile.am @@ -107,7 +107,8 @@ python-build: $(PYTHON) setup.py build install-exec-hook: - $(PYTHON) setup.py install `test -n "$(DESTDIR)" && echo --root $(DESTDIR)` + $(PYTHON) setup.py install `test -n "$(DESTDIR)" && echo --root $(DESTDIR)` \ + `test -n "$(PREFIX)" && echo --prefix $(PREFIX)` uninstall-hook: $(PYTHON) setup.py uninstall `test -n "$(DESTDIR)" && echo --root $(DESTDIR)` -- 2.14.1