diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-07-14 14:30:48 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-07-14 14:30:48 +0000 |
commit | 08b75763d15cf9e5f45eef70fe7e30ce2b748ae3 (patch) | |
tree | 938826102a35c2538079ceecdcba395c253b84cb /libc/misc/statfs/Makefile.in | |
parent | 074cafed76801cb21a2b66e1ab4eef6c943eb52a (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.in | 5 |
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 |