bindings: python: fix out-of-tree build
authorJoerg Faschingbauer <jf@faschingbauer.co.at>
Wed, 18 Jan 2023 09:11:45 +0000 (10:11 +0100)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Wed, 18 Jan 2023 09:21:18 +0000 (10:21 +0100)
commitaddf968c7321132a8c659e06cc06c76534ec31f5
tree985155789f6e7f24764714dd03934c74a67f02d2
parent4eb41479de9c807edac16fdf56f3c66cff0c0c1e
bindings: python: fix out-of-tree build

Makefile.am delegates the build of the python extension to its
setup.py file, which references the extension .c files relative to the
source dir. This makes it impossible to build in a directory that is
different from the source directory (for example, for PC and ARM but
from the same source).

* Invoke setup.py from $(srcdir)
* Modify setup.py to pick up .c files relative from setup.py's own
  directory.

Signed-off-by: Joerg Faschingbauer <jf@faschingbauer.co.at>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
bindings/python/Makefile.am
bindings/python/setup.py