diff options
author | Roland McGrath <roland@gnu.org> | 2004-12-16 22:21:24 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2004-12-16 22:21:24 +0000 |
commit | fe81a1a00f4f1c91972d35b7045ce562c6117576 (patch) | |
tree | efe4730a2d1601695e0e821a8b8db856d86de118 /nscd/Makefile | |
parent | 42c3134747d848c6800de764fc9668caf3afb481 (diff) | |
download | glibc-fe81a1a00f4f1c91972d35b7045ce562c6117576.zip glibc-fe81a1a00f4f1c91972d35b7045ce562c6117576.tar.gz glibc-fe81a1a00f4f1c91972d35b7045ce562c6117576.tar.bz2 |
2004-12-16 Roland McGrath <roland@redhat.com>
* nscd/Makefile ($(objpfx)nscd): Don't depend on $(selinux-LIBS),
which is usually a -lselinux that make will resolve wrongly.
Diffstat (limited to 'nscd/Makefile')
-rw-r--r-- | nscd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nscd/Makefile b/nscd/Makefile index b21edc2..70a3519 100644 --- a/nscd/Makefile +++ b/nscd/Makefile @@ -123,10 +123,10 @@ $(objpfx)nscd_nischeck: $(objpfx)nscd_nischeck.o ifeq ($(build-shared),yes) $(objpfx)nscd: $(common-objpfx)rt/librt.so $(shared-thread-library) \ - $(common-objpfx)nis/libnsl.so $(selinux-LIBS) + $(common-objpfx)nis/libnsl.so $(objpfx)nscd_nischeck: $(common-objpfx)nis/libnsl.so else $(objpfx)nscd: $(common-objpfx)rt/librt.a $(static-thread-library) \ - $(common-objpfx)nis/libnsl.a $(selinux-LIBS) + $(common-objpfx)nis/libnsl.a $(objpfx)nscd_nischeck: $(common-objpfx)nis/libnsl.a endif |