diff options
author | Roland McGrath <roland@gnu.org> | 2002-09-11 22:04:32 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-09-11 22:04:32 +0000 |
commit | 0d35c2426d7a2682631da0433299e1c912f0ccfa (patch) | |
tree | 08e37bfeb9f28315573e2d3127f4c0cefafebd95 /nscd/Makefile | |
parent | 2c333cf190aeb3b3d71acf73b6b060c1662dbf71 (diff) | |
download | glibc-0d35c2426d7a2682631da0433299e1c912f0ccfa.tar glibc-0d35c2426d7a2682631da0433299e1c912f0ccfa.tar.gz glibc-0d35c2426d7a2682631da0433299e1c912f0ccfa.tar.bz2 glibc-0d35c2426d7a2682631da0433299e1c912f0ccfa.zip |
* sysdeps/generic/dl-environ.c (unsetenv): Rewritten using strncmp,
no longer wrongly matches arbitrary prefixes of NAME.
Reported by Jakub Jelinek <jakub@redhat.com>.
2002-09-11 Jakub Jelinek <jakub@redhat.com>
* posix/bug-regex11.c (tests): New array.
(main): Rewritten to run more different tests.
* nscd/Makefile (CPPFLAGS-nscd, CPPFLAGS-nscd_conf, CPPFLAGS-dbg_log)
(CPPFLAGS-connections, CPPFLAGS-hstcache): Variables removed.
Instead, catch all of $(nscd-modules) via cppflags-iterator.mk.
Diffstat (limited to 'nscd/Makefile')
-rw-r--r-- | nscd/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/nscd/Makefile b/nscd/Makefile index 434cf4d759..0bd320e402 100644 --- a/nscd/Makefile +++ b/nscd/Makefile @@ -53,11 +53,10 @@ distribute := nscd.h nscd-client.h dbg_log.h \ include ../Rules -CPPFLAGS-nscd = -DNOT_IN_libc -CPPFLAGS-nscd_conf = -DNOT_IN_libc -CPPFLAGS-dbg_log = -DNOT_IN_libc -CPPFLAGS-connections = -DNOT_IN_libc -CPPFLAGS-hstcache = -DNOT_IN_libc +# This makes sure -DNOT_IN_libc is passed for all these modules. +cpp-srcs-left := $(nscd-modules:=.c) +lib := nscd +include $(patsubst %,$(..)cppflags-iterator.mk,$(cpp-srcs-left)) $(objpfx)nscd: $(nscd-modules:%=$(objpfx)%.o) $(objpfx)nscd_nischeck: $(objpfx)nscd_nischeck.o |