GNU C Library master sources branch master updated. glibc-2.24-368-g8888eb5

zack@sourceware.org zack@sourceware.org
Mon Nov 14 19:28:00 GMT 2016


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  8888eb5e6d0ca664671c312a1409166114699519 (commit)
      from  9601d3ad787729c74f3971814426fc9e64571d80 (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=8888eb5e6d0ca664671c312a1409166114699519

commit 8888eb5e6d0ca664671c312a1409166114699519
Author: Zack Weinberg <zackw@panix.com>
Date:   Mon Nov 14 14:25:11 2016 -0500

    Fix build-and-build-again bug in sunrpc tests.
    
    rpcgen will error out if the file it's asked to create already exists.
    Several other rules in sunrpc/Makefile take care to delete rpcgen-
    generated files before creating them, but rpcgen-tests doesn't, which
    can lead to spurious test failures in an incremental rebuild.
    
    	* sunrpc/Makefile (rpcgen-tests): Delete the .out file before
    	creating or re-creating it.

diff --git a/sunrpc/Makefile b/sunrpc/Makefile
index 99e5c3c..9e805fb 100644
--- a/sunrpc/Makefile
+++ b/sunrpc/Makefile
@@ -233,6 +233,7 @@ $(objpfx)thrsvc: $(common-objpfx)linkobj/libc.so $(shared-thread-library)
 
 ifeq ($(run-built-tests),yes)
 $(rpcgen-tests): $(objpfx)%.out: %.x $(objpfx)rpcgen
+	-rm -f $@
 	$(built-program-cmd) -c $< -o $@; \
 	$(evaluate-test)
 endif

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

Summary of changes:
 sunrpc/Makefile |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)


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



More information about the Glibc-cvs mailing list