From 96aed9b0e305fda4d132fe8811d9ec88b3b52715 Mon Sep 17 00:00:00 2001 From: xambroz <723625+xambroz@users.noreply.github.com> Date: Sat, 3 Apr 2021 22:51:54 +0200 Subject: [PATCH] python_install_dir MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Description: Force installation of the Python module in debian/tmp. Debian-centric patch to force the installation of this module into debian/tmp. Author: David Martínez Moreno Forwarded: not-needed Last-Update: 2012-10-12 --- bindings/python/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/Makefile.am b/bindings/python/Makefile.am index a57a965..e1db1a7 100644 --- a/bindings/python/Makefile.am +++ b/bindings/python/Makefile.am @@ -6,7 +6,7 @@ all: python setup.py build install: all - python setup.py install + python setup.py install --prefix=$(DESTDIR)$(prefix) clean: python setup.py clean