diff options
author | Guo Ren <ren_guo@c-sky.com> | 2017-11-02 20:14:33 +0800 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-11-02 22:13:54 +0100 |
commit | b8c3e941731ddfc3728045142aa9081adeeeaee2 (patch) | |
tree | 78cf89e7c2e8e677cf447c259d69437a4283a1a2 | |
parent | 64b0cd16dcd509249da2f80dcad3ed0975251672 (diff) | |
download | buildroot-b8c3e941731ddfc3728045142aa9081adeeeaee2.tar.gz buildroot-b8c3e941731ddfc3728045142aa9081adeeeaee2.zip |
package/dtc: qemu system build need libfdt
The "install-bin" target just installs dtc's programs to host/bin
without libfdt, but building qemu system requires libfdt.
see: https://gitlab.com/c-sky/buildroot/-/jobs/38654503
So we need to install libfdt to satisfy the requirements of qemu.
Signed-off-by: Guo Ren <ren_guo@c-sky.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/dtc/dtc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/dtc/dtc.mk b/package/dtc/dtc.mk index dd0f30d9ae..1bcee29bb3 100644 --- a/package/dtc/dtc.mk +++ b/package/dtc/dtc.mk @@ -51,7 +51,7 @@ define HOST_DTC_BUILD_CMDS endef define HOST_DTC_INSTALL_CMDS - $(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D) PREFIX=$(HOST_DIR) install-bin + $(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D) PREFIX=$(HOST_DIR) install endef $(eval $(generic-package)) |