mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-17 12:41:32 +00:00
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 <stefan.agner@toradex.com> Acked-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
92688a0993
commit
9963890b8b
1 changed files with 1 additions and 1 deletions
|
@ -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',
|
||||
|
|
Loading…
Add table
Reference in a new issue