summaryrefslogtreecommitdiff
path: root/package/boot
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2014-08-01 11:19:46 +0000
committerJohn Crispin <john@openwrt.org>2014-08-01 11:19:46 +0000
commitc890f71b95274302a608299fc46bbd061e9090fa (patch)
treefde4f744e2154532d784e343dc462cddf8bca95f /package/boot
parent8d3f3a1d7214f658a0d0132a62b8943ae100efbd (diff)
downloadmtk-20170518-c890f71b95274302a608299fc46bbd061e9090fa.zip
mtk-20170518-c890f71b95274302a608299fc46bbd061e9090fa.tar.gz
mtk-20170518-c890f71b95274302a608299fc46bbd061e9090fa.tar.bz2
package:grub2: fix build error on linux missing libzfs
configure enables libzfs support on default. This will break the build, on systems without libzfs. Signed-off-by: Hans Ulli Kroll <ulli.kroll@googlemail.com> SVN-Revision: 41935
Diffstat (limited to 'package/boot')
-rw-r--r--package/boot/grub2/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/package/boot/grub2/Makefile b/package/boot/grub2/Makefile
index 83edfc6..64a3058 100644
--- a/package/boot/grub2/Makefile
+++ b/package/boot/grub2/Makefile
@@ -48,12 +48,14 @@ CONFIGURE_ARGS += \
--disable-werror \
--disable-nls \
--disable-device-mapper \
+ --disable-libzfs \
--disable-grub-mkfont
HOST_CONFIGURE_ARGS += \
--target=$(REAL_GNU_TARGET_NAME) \
--sbindir="$(STAGING_DIR_HOST)/bin" \
--disable-werror \
+ --disable-libzfs \
--disable-nls
HOST_MAKE_FLAGS += \