bindings: python: pass DESTDIR to setup.py
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Mon, 13 Feb 2023 16:54:31 +0000 (17:54 +0100)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Mon, 13 Feb 2023 17:21:08 +0000 (18:21 +0100)
As per automake docs:

The DESTDIR variable can be used to perform a staged installation. The
package should be configured as if it was going to be installed in its
final location (e.g., --prefix /usr), but when running make install, the
DESTDIR should be set to the absolute name of a directory into which the
installation will be diverted. From this directory it is easy to review
which files are being installed where, and finally copy them to their
final location by some means.

Prefix $(prefix) with $(DESTDIR) when calling setup.py.

Reported-by: Peter Robinson <pbrobinson@gmail.com>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Reviewed-by: Peter Robinson <pbrobinson@gmail.com>
Tested-by: Peter Robinson <pbrobinson@gmail.com>
bindings/python/Makefile.am

index 9fb2e957a180a43bca733e29f8e4704692463aac..75ce53b2b01377b1505c2220264cd878fc376cb6 100644 (file)
@@ -18,7 +18,7 @@ all-local:
 
 install-exec-local:
        GPIOD_WITH_TESTS= \
-       $(PYTHON) $(srcdir)/setup.py install --prefix=$(prefix)
+       $(PYTHON) $(srcdir)/setup.py install --prefix=$(DESTDIR)$(prefix)
 
 SUBDIRS = gpiod