diff options
author | John Crispin <blogic@openwrt.org> | 2014-08-01 11:19:46 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2014-08-01 11:19:46 +0000 |
commit | 89b7d17ab12f3410ff7beff62f6730542fc63b1a (patch) | |
tree | d036d868475cd0f154dd9723be88f6d8f01bf353 | |
parent | f3360b7123942f5f01a61c22b038e407c0ea7443 (diff) | |
download | master-187ad058-89b7d17ab12f3410ff7beff62f6730542fc63b1a.tar.gz master-187ad058-89b7d17ab12f3410ff7beff62f6730542fc63b1a.tar.bz2 master-187ad058-89b7d17ab12f3410ff7beff62f6730542fc63b1a.zip |
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>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41935 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/boot/grub2/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/boot/grub2/Makefile b/package/boot/grub2/Makefile index 83edfc614f..64a30589d0 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 += \ |