mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-14 00:40:12 +00:00
1029340353
Passing --disable-tests does not do anything since upstream commit [0]
("Fix test binary installation") as that commit removed it since there is
already and existing --without-tests compile option to not compile
the tests at all as --disable-tests was just disabling their installation.
So, lets just pass --without-tests instead to disable test compilation.
[0] https://git.infraroot.at/mtd-utils.git/commit/?id=7170a28d46d5db1e7a9da24a5555a194a233ef0b
Fixes: 67efb6a661
("tools: mtd-utils: Update to version 2.1.4")
Link: https://github.com/openwrt/openwrt/pull/15791
Signed-off-by: Robert Marko <robimarko@gmail.com>
59 lines
1.2 KiB
Makefile
59 lines
1.2 KiB
Makefile
#
|
|
# Copyright (C) 2006-2015 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=mtd-utils
|
|
PKG_VERSION:=2.2.0
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=https://infraroot.at/pub/mtd/
|
|
PKG_HASH:=250d082f67375ca8451b5fcfc9a23a53ced3ebebd8312c288daf2507bbab1324
|
|
PKG_CPE_ID:=cpe:/a:mtd-utils_project:mtd-utils
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
ifneq ($(HOST_OS),Linux)
|
|
HOST_CFLAGS += \
|
|
-I$(CURDIR)/include \
|
|
-Dloff_t=off_t \
|
|
-D__BYTE_ORDER=BYTE_ORDER \
|
|
-include endian.h \
|
|
-DNO_NATIVE_SUPPORT \
|
|
-include fls.h
|
|
endif
|
|
|
|
HOST_CONFIGURE_VARS+= \
|
|
UUID_CFLAGS="-I$(STAGING_DIR_HOST)/include/e2fsprogs/uuid"
|
|
|
|
HOST_CONFIGURE_ARGS+= \
|
|
--without-tests \
|
|
--without-crypto \
|
|
--without-xattr \
|
|
--without-zstd \
|
|
--without-lzo \
|
|
--with-lzma
|
|
|
|
HOST_MAKE_FLAGS += \
|
|
PROGRAMS="mkfs.jffs2 ubinize mkfs.ubifs"
|
|
|
|
define Host/Install
|
|
$(CP) \
|
|
$(HOST_BUILD_DIR)/mkfs.jffs2 \
|
|
$(HOST_BUILD_DIR)/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}
|
|
endef
|
|
|
|
$(eval $(call HostBuild))
|