diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-10-29 05:47:04 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-10-29 05:47:04 +0000 |
commit | 87108d9ffaa3e4d4bc761453de093011e0d3398d (patch) | |
tree | 646702040ce8122cfcb857693671809ba35cacbc /libc/sysdeps/linux/i386 | |
parent | 4e1ec6cac528de017d8e8696e0442904847bdc54 (diff) |
Fix up stat so we translate from kernel stat to libc stat. Try to fix
up a few little things with dir entry reading. busybox now compiles,
and seems to basically work... :-)
-Erik
Diffstat (limited to 'libc/sysdeps/linux/i386')
-rw-r--r-- | libc/sysdeps/linux/i386/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/i386/Makefile b/libc/sysdeps/linux/i386/Makefile index 018ac653a..b75c4dd72 100644 --- a/libc/sysdeps/linux/i386/Makefile +++ b/libc/sysdeps/linux/i386/Makefile @@ -28,7 +28,7 @@ ASFLAGS=$(CFLAGS) SSRC=_start.S longjmp.S setjmp.S #_start.S #clone.S SOBJS=$(patsubst %.S,%.o, $(SSRC)) -CSRC=readdir.c #select.c +CSRC=#select.c COBJS=$(patsubst %.c,%.o, $(CSRC)) OBJS=$(SOBJS) $(COBJS) |