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.20-435-ge47b8d3


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  e47b8d3bbc9415d5aceaeee3e946c3ab7d985bad (commit)
      from  7910c2ae7391f3e6e1c6fed1c9a9b1f7492ec175 (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=e47b8d3bbc9415d5aceaeee3e946c3ab7d985bad

commit e47b8d3bbc9415d5aceaeee3e946c3ab7d985bad
Author: Chris Metcalf <cmetcalf@ezchip.com>
Date:   Mon Dec 29 10:58:25 2014 -0500

    posix/Makefile: use $(objpfx) for files in before-compile.
    
    This fixes a build failure with a separate build tree where
    posix-conf-vars-def.h wasn't being built.

diff --git a/ChangeLog b/ChangeLog
index 8701732..c25991f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-12-29  Chris Metcalf  <cmetcalf@ezchip.com>
+
+	* posix/Makefile (before-compile): Use $(objpfx) for
+	posix-conf-vars-def.h.
+
 2014-12-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
 
 	* posix/getconf.c (main): Use size_t for type of I.
diff --git a/posix/Makefile b/posix/Makefile
index fe332df..dd42e5d 100644
--- a/posix/Makefile
+++ b/posix/Makefile
@@ -99,7 +99,7 @@ others		:= getconf
 install-bin	:= getconf
 install-others-programs	:= $(inst_libexecdir)/getconf
 
-before-compile	+= testcases.h ptestcases.h posix-conf-vars-def.h
+before-compile	+= testcases.h ptestcases.h $(objpfx)posix-conf-vars-def.h
 
 # So they get cleaned up.
 generated += $(addprefix wordexp-test-result, 1 2 3 4 5 6 7 8 9 10) \

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

Summary of changes:
 ChangeLog      |    5 +++++
 posix/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]