From: Stefan Agner Date: Wed, 29 Mar 2017 19:41:23 +0000 (-0700) Subject: libfdt: fix build with Python 3 X-Git-Tag: v2017.05-rc2~23 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=9963890b8be1d208035945abc5ba9f77637b6542;p=u-boot libfdt: fix build with Python 3 For some reason Python 3 seems to think it does not need to build the library. Using the --force parameter makes sure that the library gets built always. This is especially important since we move the library in the next step of the Makefile, hence forcing a rebuild every time the higher level Makefile triggers a rebuild is required to make sure the library is always there. Signed-off-by: Stefan Agner Acked-by: Simon Glass --- diff --git a/lib/libfdt/setup.py b/lib/libfdt/setup.py index 62e7bcc1ac..845a0c2b10 100644 --- a/lib/libfdt/setup.py +++ b/lib/libfdt/setup.py @@ -27,7 +27,7 @@ libfdt_module = Extension( extra_compile_args = cflags ) -sys.argv = [progname, '--quiet', 'build_ext', '--inplace'] +sys.argv = [progname, '--quiet', 'build_ext', '--inplace', '--force'] setup (name = 'libfdt', version = '0.1',