diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-01-29 13:27:05 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-01-29 13:27:05 +0000 |
commit | de15e46e415fc67cd644c28d187b8d5fbcd6105f (patch) | |
tree | 6d84d9b7c3e5c0abc2ffb6e8e6b9c4f899c5b957 /libc | |
parent | 4e164bd909dd7cd32a3709fb9f926a0d77ccbad0 (diff) |
Make it so powerpc can work despite lacking brk().
Diffstat (limited to 'libc')
-rw-r--r-- | libc/sysdeps/linux/common/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/Makefile b/libc/sysdeps/linux/common/Makefile index bd097452a..63eb9f041 100644 --- a/libc/sysdeps/linux/common/Makefile +++ b/libc/sysdeps/linux/common/Makefile @@ -28,6 +28,9 @@ CSRC= waitpid.c kernel_version.c statfix.c getdnnm.c gethstnm.c \ mkfifo.c setegid.c wait.c errno.c getpagesize.c seteuid.c \ wait3.c setpgrp.c getdtablesize.c create_module.c ptrace.c \ cmsg_nxthdr.c open64.c statfix64.c statfs64.c sbrk.c +ifneq ($(strip $(EXCLUDE_BRK)),true) +CSRC+=sbrk.c +endif COBJS=$(patsubst %.c,%.o, $(CSRC)) MSRC=syscalls.c |