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.15-915-g5bd6628


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  5bd66283dbfa7a20b0c50c9a3e4362409b61ec06 (commit)
      from  656416c96528437f54b345b1470aaa40f145ed30 (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://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=5bd66283dbfa7a20b0c50c9a3e4362409b61ec06

commit 5bd66283dbfa7a20b0c50c9a3e4362409b61ec06
Author: Andreas Schwab <schwab@linux-m68k.org>
Date:   Sat May 5 09:56:47 2012 +0200

    Track dependencies for .oS-only objects

diff --git a/ChangeLog b/ChangeLog
index 629a31a..a4851e7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2012-05-16  Andreas Schwab  <schwab@linux-m68k.org>
 
+	* Makerules (+depfiles): Also collect depfiles from .oS in
+	$(extra-objs).
+	* sysdeps/ieee754/ldbl-opt/Makefile (extra-objs): Add $(addsuffix
+	.oS, $(libnldbl-routines)).
+
 	* Makerules (native-compile-mkdep-flags): Define.
 	* sunrpc/Makefile (extra-objs): Add $(addprefix
 	cross-,$(rpcgen-objs)), don't add $(cross-rpcgen-objs).
diff --git a/Makerules b/Makerules
index a897d4e..f374700 100644
--- a/Makerules
+++ b/Makerules
@@ -647,6 +647,7 @@ endif
 
 +depfiles := $(sources:.c=.d) \
 	     $(patsubst %.o,%.d,$(filter %.o,$(extra-objs:.os=.o))) \
+	     $(patsubst %.oS,%.d,$(filter %.oS,$(extra-objs))) \
 	     $(patsubst %.o,%.d,$(filter %.o,$(extra-test-objs:.os=.o))) \
 	     $(addsuffix .d,$(tests) $(xtests) $(test-srcs))
 ifeq ($(build-programs),yes)
diff --git a/sysdeps/ieee754/ldbl-opt/Makefile b/sysdeps/ieee754/ldbl-opt/Makefile
index 97b9c9f..98c9a9c 100644
--- a/sysdeps/ieee754/ldbl-opt/Makefile
+++ b/sysdeps/ieee754/ldbl-opt/Makefile
@@ -44,5 +44,6 @@ libnldbl-calls = asprintf dprintf fprintf fscanf fwprintf fwscanf iovfscanf \
 libnldbl-routines = $(libnldbl-calls:%=nldbl-%)
 libnldbl-inhibit-o = $(object-suffixes)
 libnldbl-static-only-routines = $(libnldbl-routines)
+extra-objs += $(addsuffix .oS, $(libnldbl-routines))
 
 endif

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

Summary of changes:
 ChangeLog                         |    5 +++++
 Makerules                         |    1 +
 sysdeps/ieee754/ldbl-opt/Makefile |    1 +
 3 files changed, 7 insertions(+), 0 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]