提交 9963890b 编写于 作者: S Stefan Agner 提交者: Simon Glass

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: NStefan Agner <stefan.agner@toradex.com>
Acked-by: NSimon Glass <sjg@chromium.org>
上级 92688a09
......@@ -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',
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册