From 4160ba8725b0812091ec630b232d3a84062699ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Mork?= Date: Fri, 22 Oct 2021 14:34:48 +0200 Subject: [PATCH] dosfstools: fix AM_ICONV triggered build error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix this build error: gcc -Wall -Wextra -Wno-sign-compare -Wno-missing-field-initializers \ -Wmissing-prototypes -Wstrict-prototypes -Wwrite-strings -O2 \ -I/usr/local/src/openwrt/staging_dir/host/include \ -L/usr/local/src/openwrt/staging_dir/host/lib \ -o fsck.fat check.o file.o fsck.fat.o lfn.o boot.o common.o fat.o io.o \ charconv.o @LIBICONV@ gcc: error: LIBICONV@: No such file or directory make[4]: *** [Makefile:449: fsck.fat] Error 1 Suggested-by: Rosen Penev Signed-off-by: Bjørn Mork --- utils/dosfstools/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/utils/dosfstools/Makefile b/utils/dosfstools/Makefile index 1c88345bb7..b917818b30 100644 --- a/utils/dosfstools/Makefile +++ b/utils/dosfstools/Makefile @@ -22,7 +22,6 @@ PKG_LICENSE_FILES:=COPYING PKG_CPE_ID:=cpe:/a:dosfstools_project:dosfstools PKG_INSTALL:=1 -PKG_FIXUP:=autoreconf include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/nls.mk