소스 검색

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 <[email protected]>

SVN-Revision: 41935
John Crispin 11 년 전
부모
커밋
c890f71b95
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      package/boot/grub2/Makefile

+ 2 - 0
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 += \