This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.26.9000-1170-g5503f41


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  5503f413bf4221d26f83333bb42d7b2cd056236c (commit)
      from  caaf7804e26c1a4f28a1bf7cfe1075d06bce1255 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=5503f413bf4221d26f83333bb42d7b2cd056236c

commit 5503f413bf4221d26f83333bb42d7b2cd056236c
Author: Andreas Schwab <schwab@linux-m68k.org>
Date:   Fri Jan 26 19:01:03 2018 +0100

    Build only shared libnsl objects if NIS is disabled (bug 22701)

diff --git a/ChangeLog b/ChangeLog
index 711eb4f..78d1338 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
 	* README: Update for hppa.
diff --git a/nis/Makefile b/nis/Makefile
index 01ec4dc..e7497f7 100644
--- a/nis/Makefile
+++ b/nis/Makefile
@@ -74,7 +74,8 @@ else # not $(build-obsolete-nsl)
 # is not installed.
 install-lib-ldscripts = 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)
 

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog    |    6 ++++++
 nis/Makefile |    3 ++-
 2 files changed, 8 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]