diff options
author | Florian Fainelli <florian@openwrt.org> | 2010-01-11 15:40:45 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2010-01-11 15:40:45 +0000 |
commit | bcdfe67a13a31c5d46543c3ae52ad52f6326d06d (patch) | |
tree | 88be1bc95756c024383c65b38b4dd4130634cd4e /tools/mtd-utils/Makefile | |
parent | fb86cd6dccde3fe54df2f51342d77a353a3f869b (diff) | |
download | upstream-bcdfe67a13a31c5d46543c3ae52ad52f6326d06d.tar.gz upstream-bcdfe67a13a31c5d46543c3ae52ad52f6326d06d.tar.bz2 upstream-bcdfe67a13a31c5d46543c3ae52ad52f6326d06d.zip |
do not build nor install mkfs.ubifs until we have it fixed (#6483)
SVN-Revision: 19106
Diffstat (limited to 'tools/mtd-utils/Makefile')
-rw-r--r-- | tools/mtd-utils/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tools/mtd-utils/Makefile b/tools/mtd-utils/Makefile index 68d58ea903..69b7b159d6 100644 --- a/tools/mtd-utils/Makefile +++ b/tools/mtd-utils/Makefile @@ -39,21 +39,17 @@ define Host/Compile $(MAKE) -C $(HOST_BUILD_DIR)/ubi-utils \ $(MTD_MAKEOPTS) \ TARGETS=ubinize - $(MAKE) -C $(HOST_BUILD_DIR)/mkfs.ubifs \ - $(MTD_MAKEOPTS) \ - BUILDDIR="$(HOST_BUILD_DIR)/mkfs.ubifs" endef define Host/Install $(CP) \ $(HOST_BUILD_DIR)/mkfs.jffs2 \ - $(HOST_BUILD_DIR)/mkfs.ubifs/mkfs.ubifs \ $(HOST_BUILD_DIR)/ubinize \ $(STAGING_DIR_HOST)/bin/ endef define Host/Clean - rm -f $(STAGING_DIR_HOST)/bin/{mkfs.jffs2,mkfs.ubifs,ubinize} + rm -f $(STAGING_DIR_HOST)/bin/{mkfs.jffs2,ubinize} endef $(eval $(call HostBuild)) |