diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-01-21 07:14:56 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-01-21 07:14:56 +0000 |
commit | 7d04edce9211ccd0ae06cd19d3cc2098d8891935 (patch) | |
tree | 3c97665fa97956f776ad94838ee8089de67fce52 | |
parent | 95a647ed2a50b79fb4143b85e019746efa9ed004 (diff) | |
download | glibc-7d04edce9211ccd0ae06cd19d3cc2098d8891935.tar.gz glibc-7d04edce9211ccd0ae06cd19d3cc2098d8891935.tar.xz glibc-7d04edce9211ccd0ae06cd19d3cc2098d8891935.zip |
(distribute): Filter out xmalloc.c. glibc-2.2.5 cvs/glibc-2-2-5
-rw-r--r-- | nscd/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/nscd/Makefile b/nscd/Makefile index 410404b084..0b11c712fb 100644 --- a/nscd/Makefile +++ b/nscd/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1998, 2000 Free Software Foundation, Inc. +# Copyright (C) 1998, 2000, 2002 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -47,8 +47,9 @@ otherlibs += $(nssobjdir)/libnss_files.a $(resolvobjdir)/libnss_dns.a \ endif distribute := nscd.h nscd-client.h dbg_log.h \ - $(nscd-modules:=.c) nscd_nischeck.c TODO nscd.conf nscd.init \ - nscd_proto.h nscd-types.h + $(addsuffix .c, $(filter-out xmalloc, $(nscd-modules))) \ + nscd_nischeck.c TODO nscd.conf nscd.init nscd_proto.h \ + nscd-types.h include ../Rules |