浏览代码

Fix a thinko -- I used the wrong symbol to check for LFS support.
-Erik

Eric Andersen 23 年之前
父节点
当前提交
db7e48ff67
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      libc/misc/statfs/Makefile

+ 1 - 1
libc/misc/statfs/Makefile

@@ -22,7 +22,7 @@
 TOPDIR=../../../
 include $(TOPDIR)Rules.mak
 
-ifeq ($(strip $(__UCLIBC_HAVE_LFS__)),true)
+ifeq ($(strip $(DOLFS)),true)
 CSRC = fstatfs64.c statfs64.c statvfs.c statvfs64.c fstatvfs.c fstatvfs64.c
 else
 CSRC = statvfs.c fstatvfs.c