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-728-ga65ef2a


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  a65ef2aefa3167e531d1df0047df804069a8c36f (commit)
      from  76e835cf9e553cd9ce8f9cfb33dea37e1f95fd8f (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=a65ef2aefa3167e531d1df0047df804069a8c36f

commit a65ef2aefa3167e531d1df0047df804069a8c36f
Author: Andreas Jaeger <aj@suse.de>
Date:   Thu May 3 20:51:38 2012 +0200

    Do not delete make check-abi symlist files
    
    Do not remove the .symlist files and thus do not run
    objdump for each library etc if you repeat the make check command.

diff --git a/ChangeLog b/ChangeLog
index fa804a5..1427a45 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2012-05-03  Andreas Jaeger  <aj@suse.de>
+	    Roland McGrath <roland@hack.frob.com>
+
+        * Makerules (.PRECIOUS): Add %.symlist pattern to prevent
+	intermediate file deletion.
+        (generated): Add .symlist files.
+
 2012-05-03  Joseph Myers  <joseph@codesourcery.com>
 
 	[BZ #13775]
diff --git a/Makerules b/Makerules
index de87ad6..b069763 100644
--- a/Makerules
+++ b/Makerules
@@ -1158,6 +1158,13 @@ ifeq ($(versioning),yes)
 
 vpath %.abilist $(+sysdep_dirs)
 
+# The .PRECIOUS rule prevents the files built by an implicit rule whose
+# target pattern is %.symlist from being considered "intermediate files"
+# and automatically removed.  We only want these files to be removed by
+# 'make clean', which is handled by the 'generated' variable.
+.PRECIOUS: %.symlist
+generated += $(extra-libs:=.symlist)
+
 check-abi-%: $(common-objpfx)config.make %.abilist $(objpfx)%.symlist
 	$(check-abi)
 check-abi-%: $(common-objpfx)config.make %.abilist $(common-objpfx)%.symlist

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

Summary of changes:
 ChangeLog |    7 +++++++
 Makerules |    7 +++++++
 2 files changed, 14 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]