summaryrefslogtreecommitdiff
path: root/libc/misc/statfs/Makefile.in
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-07-14 14:30:48 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-07-14 14:30:48 +0000
commit08b75763d15cf9e5f45eef70fe7e30ce2b748ae3 (patch)
tree938826102a35c2538079ceecdcba395c253b84cb /libc/misc/statfs/Makefile.in
parent074cafed76801cb21a2b66e1ab4eef6c943eb52a (diff)
- improve UCLIBC_LINUX_SPECIFIC
compile-tested only, fixes libc/misc/statfs/fstatfs64.c:29: error: 'fstatfs' undeclared here (not in a function)
Diffstat (limited to 'libc/misc/statfs/Makefile.in')
-rw-r--r--libc/misc/statfs/Makefile.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/libc/misc/statfs/Makefile.in b/libc/misc/statfs/Makefile.in
index c979b2255..b0a8b84c9 100644
--- a/libc/misc/statfs/Makefile.in
+++ b/libc/misc/statfs/Makefile.in
@@ -7,7 +7,10 @@
CSRC := statvfs.c fstatvfs.c
ifeq ($(UCLIBC_HAS_LFS),y)
-CSRC += fstatfs64.c statfs64.c statvfs64.c fstatvfs64.c
+ifeq ($(UCLIBC_LINUX_SPECIFIC),y)
+CSRC += fstatfs64.c statfs64.c
+endif
+CSRC += statvfs64.c fstatvfs64.c
endif
MISC_STATFS_DIR := $(top_srcdir)libc/misc/statfs