1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-04 21:42:01 +03:00

[tools] do not build nor install mkfs.ubifs until we have it fixed

(#6483)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19106 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2010-01-11 15:40:45 +00:00
parent 1de4e25758
commit 1205338130

View File

@ -39,21 +39,17 @@ define Host/Compile
$(MAKE) -C $(HOST_BUILD_DIR)/ubi-utils \ $(MAKE) -C $(HOST_BUILD_DIR)/ubi-utils \
$(MTD_MAKEOPTS) \ $(MTD_MAKEOPTS) \
TARGETS=ubinize TARGETS=ubinize
$(MAKE) -C $(HOST_BUILD_DIR)/mkfs.ubifs \
$(MTD_MAKEOPTS) \
BUILDDIR="$(HOST_BUILD_DIR)/mkfs.ubifs"
endef endef
define Host/Install define Host/Install
$(CP) \ $(CP) \
$(HOST_BUILD_DIR)/mkfs.jffs2 \ $(HOST_BUILD_DIR)/mkfs.jffs2 \
$(HOST_BUILD_DIR)/mkfs.ubifs/mkfs.ubifs \
$(HOST_BUILD_DIR)/ubinize \ $(HOST_BUILD_DIR)/ubinize \
$(STAGING_DIR_HOST)/bin/ $(STAGING_DIR_HOST)/bin/
endef endef
define Host/Clean define Host/Clean
rm -f $(STAGING_DIR_HOST)/bin/{mkfs.jffs2,mkfs.ubifs,ubinize} rm -f $(STAGING_DIR_HOST)/bin/{mkfs.jffs2,ubinize}
endef endef
$(eval $(call HostBuild)) $(eval $(call HostBuild))