diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-04-07 05:52:48 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-04-07 05:52:48 +0000 |
commit | 0dca115912f5d64c96f14876fff3bd582a8c4a1b (patch) | |
tree | b7e985afa922486952f6578e3bb3948d9c487838 /libc/unistd/Makefile.in | |
parent | 49e81cada73616864b9b31df0aeb6961c30f5a6e (diff) |
implement daemon() using clone() on no-mmu systems as suggested by Jamie Lokier
Diffstat (limited to 'libc/unistd/Makefile.in')
-rw-r--r-- | libc/unistd/Makefile.in | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libc/unistd/Makefile.in b/libc/unistd/Makefile.in index f6ef98cf0..b4c5130a9 100644 --- a/libc/unistd/Makefile.in +++ b/libc/unistd/Makefile.in @@ -14,8 +14,6 @@ CSRC := $(filter-out exec.c,$(CSRC)) ifeq ($(ARCH_USE_MMU),y) CSRC := $(filter-out __exec_alloc.c,$(CSRC)) -else -CSRC := $(filter-out daemon.c,$(CSRC)) endif ifeq ($(UCLIBC_HAS_GNU_GETOPT),y) |