diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-02-26 13:31:56 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-02-26 13:31:56 +0000 |
commit | 4e2664e5b1d7032ce5ee895cd06497e61d07a80f (patch) | |
tree | 00aa1453e5d1b46a7ee6aac3287b8a3062aa24ee | |
parent | 21be7b150ce65f2bc6b4e142d77f9af0944fa3c3 (diff) |
Don't build glob64 for non-LFS
-rw-r--r-- | libc/misc/glob/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libc/misc/glob/Makefile.in b/libc/misc/glob/Makefile.in index 00acf326a..7a4fa79f1 100644 --- a/libc/misc/glob/Makefile.in +++ b/libc/misc/glob/Makefile.in @@ -6,7 +6,10 @@ # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. # -CSRC := glob.c glob64.c glob-hooks.c +CSRC := glob.c glob-hooks.c +ifeq ($(UCLIBC_HAS_LFS),y) +CSRC += glob64.c +endif MISC_GLOB_DIR := $(top_srcdir)libc/misc/glob MISC_GLOB_OUT := $(top_builddir)libc/misc/glob |