浏览代码

nfs-kernel-server: fix build with libblkid, libuuid

config.log reports
WARNING: uuid support disabled as libblkid is too old
because the test macro AC_BLKID_VERS is not cross compile friendly
resulting in libblkid_cv_is_recent=unknown

Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
Dirk Neukirchen 10 年前
父节点
当前提交
12e57878fe
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2
    1
      net/nfs-kernel-server/Makefile

+ 2
- 1
net/nfs-kernel-server/Makefile 查看文件

@@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk
8 8
 
9 9
 PKG_NAME:=nfs-kernel-server
10 10
 PKG_VERSION:=1.3.2
11
-PKG_RELEASE:=1
11
+PKG_RELEASE:=2
12 12
 PKG_MD5SUM:=1e2f3c1ed468dee02d00c534c002ea10
13 13
 
14 14
 PKG_SOURCE_URL:=@SF/nfs
@@ -85,6 +85,7 @@ CONFIGURE_ARGS += \
85 85
 	--disable-nfsdcld
86 86
 
87 87
 CONFIGURE_VARS += \
88
+	libblkid_cv_is_recent=yes \
88 89
 	CONFIG_SQLITE3_TRUE="\#" \
89 90
 	CONFIG_NFSDCLD_TRUE="\#"
90 91