diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2020-10-12 11:34:03 +0400 |
---|---|---|
committer | David Gibson <david@gibson.dropbear.id.au> | 2020-10-21 14:35:17 +1100 |
commit | 05874d08212d23dafd753ab52a5762c9b69b25de (patch) | |
tree | 126e6c8643be6972c786486dbc0cf140d7c2c8d3 /pylibfdt/Makefile.pylibfdt | |
parent | 3bc3a6b9fe0cba171bef7d1cc2b04a362228dd1c (diff) | |
download | dtc-05874d08212d23dafd753ab52a5762c9b69b25de.zip dtc-05874d08212d23dafd753ab52a5762c9b69b25de.tar.gz dtc-05874d08212d23dafd753ab52a5762c9b69b25de.tar.bz2 |
pylibfdt: allow build out of tree
With meson, we have to support out-of-tree build.
Introduce a --top-builddir option, which will default to the current
directory to lookup generated filed such as version_gen.h and output
directories.
Other source paths are derived from the location of the setup.py script
in the source tree.
--build-lib is changed to be relative to the current directory, instead
of relative to setup.py. This has less surprising results!
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20201012073405.1682782-2-marcandre.lureau@redhat.com>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'pylibfdt/Makefile.pylibfdt')
-rw-r--r-- | pylibfdt/Makefile.pylibfdt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pylibfdt/Makefile.pylibfdt b/pylibfdt/Makefile.pylibfdt index 6866a0b..1b5f236 100644 --- a/pylibfdt/Makefile.pylibfdt +++ b/pylibfdt/Makefile.pylibfdt @@ -10,7 +10,7 @@ PYLIBFDT_CLEANDIRS_L = build __pycache__ PYLIBFDT_CLEANDIRS = $(PYLIBFDT_CLEANDIRS_L:%=$(PYLIBFDT_dir)/%) SETUP = $(PYLIBFDT_dir)/setup.py -SETUPFLAGS = +SETUPFLAGS = --top-builddir . ifndef V SETUPFLAGS += --quiet @@ -18,7 +18,7 @@ endif $(PYMODULE): $(PYLIBFDT_srcs) $(LIBFDT_archive) $(SETUP) $(VERSION_FILE) @$(VECHO) PYMOD $@ - $(PYTHON) $(SETUP) $(SETUPFLAGS) build_ext --build-lib=../$(PYLIBFDT_dir) + $(PYTHON) $(SETUP) $(SETUPFLAGS) build_ext --build-lib=$(PYLIBFDT_dir) install_pylibfdt: $(PYMODULE) @$(VECHO) INSTALL-PYLIB |