diff options
author | Emmanuel Vadot <manu@bidouilliste.com> | 2017-01-16 08:07:15 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-01-20 15:38:03 -0500 |
commit | 1905c8fc711a527ff10550425498bc77e4db9ac3 (patch) | |
tree | abe06b0062f8d86f45b200ed680a0a964e73dfe7 | |
parent | 56acf018c199d7701f5bd4946b1fde46e681ecee (diff) | |
download | u-boot-1905c8fc711a527ff10550425498bc77e4db9ac3.tar.gz u-boot-1905c8fc711a527ff10550425498bc77e4db9ac3.tar.xz u-boot-1905c8fc711a527ff10550425498bc77e4db9ac3.zip |
build: Always build the libfdt python module
Do not rely on CONFIG_SPL_OF_PLATDATA to build the libfdt python module.
If swig is present, this will be build
Signed-off-by: Emmanuel Vadot <manu@bidouilliste.com>
-rw-r--r-- | tools/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile index 5b81dde4b0..a609d05859 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -111,7 +111,7 @@ fit_check_sign-objs := $(dumpimage-mkimage-objs) fit_check_sign.o # Build a libfdt Python module if swig is available # Use 'sudo apt-get install swig libpython-dev' to enable this -hostprogs-$(CONFIG_SPL_OF_PLATDATA) += \ +hostprogs-y += \ $(if $(shell which swig 2> /dev/null),_libfdt.so) _libfdt.so-sharedobjs += $(LIBFDT_OBJS) libfdt: |