mirror of git://sourceware.org/git/glibc.git
Build only shared libnsl objects if NIS is disabled (bug 22701)
This commit is contained in:
parent
caaf7804e2
commit
5503f413bf
|
@ -1,3 +1,9 @@
|
||||||
|
2018-01-26 Andreas Schwab <schwab@linux-m68k.org>
|
||||||
|
|
||||||
|
[BZ #22701]
|
||||||
|
* nis/Makefile (libnsl-inhibit-o) [$(build-obsolete-nsl) != yes]:
|
||||||
|
Build only shared objects.
|
||||||
|
|
||||||
2018-01-26 Carlos O'Donell <carlos@redhat.com>
|
2018-01-26 Carlos O'Donell <carlos@redhat.com>
|
||||||
|
|
||||||
* README: Update for hppa.
|
* README: Update for hppa.
|
||||||
|
|
|
@ -74,7 +74,8 @@ else # not $(build-obsolete-nsl)
|
||||||
# is not installed.
|
# is not installed.
|
||||||
install-lib-ldscripts = libnsl.so
|
install-lib-ldscripts = libnsl.so
|
||||||
$(inst_libdir)/libnsl.so:
|
$(inst_libdir)/libnsl.so:
|
||||||
libnsl-inhibit-o = .o # Build no static libnsl.a.
|
# Build only shared libnsl.
|
||||||
|
libnsl-inhibit-o = $(filter-out .os,$(object-suffixes))
|
||||||
|
|
||||||
endif # not $(build-obsolete-nsl)
|
endif # not $(build-obsolete-nsl)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue