build: reorder more BuildPackages lines to deal with ABI_VERSION

After the ABI version rework, packages need to be declared in the order of their
dependencies, so that dependent packages will use the right ABI version

Signed-off-by: Tianling Shen <cnsztl@project-openwrt.eu.org>
This commit is contained in:
Tianling Shen 2021-02-17 04:09:22 +08:00
parent 013ad0d613
commit 7a9414f608
No known key found for this signature in database
GPG Key ID: 6850B6345C862176
2 changed files with 3 additions and 3 deletions

View File

@ -170,7 +170,7 @@ define Host/Compile
$(MAKE) -C $(HOST_BUILD_DIR)/progs tic
endef
$(eval $(call HostBuild))
$(eval $(call BuildPackage,terminfo))
$(eval $(call BuildPackage,libncurses))
$(eval $(call BuildPackage,libncurses-dev))
$(eval $(call BuildPackage,terminfo))
$(eval $(call HostBuild))

View File

@ -66,5 +66,5 @@ define Package/libreadline/install
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib{history,readline}.so.* $(1)/usr/lib/
endef
$(eval $(call HostBuild))
$(eval $(call BuildPackage,libreadline))
$(eval $(call HostBuild))