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.17-775-g50b818b


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  50b818bf96072fda433f7df4c307639b25e4da57 (commit)
      from  416641e6879a08a859c90fc8a84802eb37f5fa8a (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=50b818bf96072fda433f7df4c307639b25e4da57

commit 50b818bf96072fda433f7df4c307639b25e4da57
Author: Siddhesh Poyarekar <siddhesh@redhat.com>
Date:   Mon Jun 10 10:08:46 2013 +0530

    Avoid overwriting earlier flags in CPPFLAGS-nonlib in benchtests
    
    When setting BENCH_DURATION in CPPFLAGS-nonlib, append to the variable
    instead of assigning to it, to avoid overwriting earlier set flags,
    notably the -DNOT_IN_libc=1 flag.

diff --git a/ChangeLog b/ChangeLog
index 94bad33..e8de668 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-06-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
+
+	* benchtests/Makefile (CPPFLAGS-nonlib): Append values instead
+	of assigning.
+
 2013-06-08  Joseph Myers  <joseph@codesourcery.com>
 
 	* sysdeps/gnu/errlist.awk: Do not generate space at end of
diff --git a/benchtests/Makefile b/benchtests/Makefile
index 6772853..680440f 100644
--- a/benchtests/Makefile
+++ b/benchtests/Makefile
@@ -102,7 +102,7 @@ ifndef BENCH_DURATION
 BENCH_DURATION := 10
 endif
 
-CPPFLAGS-nonlib = -DDURATION=$(BENCH_DURATION)
+CPPFLAGS-nonlib += -DDURATION=$(BENCH_DURATION)
 
 # Use clock_gettime to measure performance of functions.  The default is to use
 # HP_TIMING if it is available.

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

Summary of changes:
 ChangeLog           |    5 +++++
 benchtests/Makefile |    2 +-
 2 files changed, 6 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]