소스 검색

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