From: John Crispin Date: Mon, 2 Jun 2014 12:44:16 +0000 (+0000) Subject: fstools: stage libubi-utils static library and headers X-Git-Tag: reboot~7124 X-Git-Url: http://git.ozo.com/?a=commitdiff_plain;h=85b8897d1a20b774ffeb7432e7efeb2ec97049e6;p=openwrt%2F.git fstools: stage libubi-utils static library and headers Use InstallDev to make libubi-utils available for linking in uboot-envtools. Signed-off-by: Daniel Golle SVN-Revision: 40928 --- diff --git a/package/system/fstools/Makefile b/package/system/fstools/Makefile index 40adf0af57..b10f105a74 100644 --- a/package/system/fstools/Makefile +++ b/package/system/fstools/Makefile @@ -78,6 +78,13 @@ define Package/block-mount/install endef +define Build/InstallDev + $(INSTALL_DIR) $(1)/usr/include + $(CP) $(PKG_INSTALL_DIR)/usr/include/*.h $(1)/usr/include/ + $(INSTALL_DIR) $(1)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libubi-utils.a $(1)/usr/lib/ +endef + $(eval $(call BuildPackage,fstools)) $(eval $(call BuildPackage,ubi-flash)) $(eval $(call BuildPackage,block-mount))