commit-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] Hurd branch, master, updated. v0.9.git20220925-5-gbbb977d0


From: Samuel Thibault
Subject: [SCM] Hurd branch, master, updated. v0.9.git20220925-5-gbbb977d0
Date: Tue, 1 Nov 2022 07:25:32 -0400 (EDT)

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 "Hurd".

The branch, master has been updated
       via  bbb977d086e4f501751ae95d253450c57e1ca00c (commit)
      from  80bc1678b7b859decae536e726a3e5870cbe84eb (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 -----------------------------------------------------------------
commit bbb977d086e4f501751ae95d253450c57e1ca00c
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Tue Nov 1 12:23:11 2022 +0100

    Fix parallel builds
    
    As explained on
    https://www.gnu.org/software/automake/manual/html_node/Multiple-Outputs.html
    
    a b: c
        foo -o a -o b
    
    is actually equivalent to
    
    a: c
        foo -o a -o b
    b: c
        foo -o a -o b
    
    and can thus break in parallel builds, since the foo command may then be
    called twice. Also, we are here using pattern rules. The automake manual
    contains various levels of fixing this, using a mere stamp file should
    be enough for us.

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

Summary of changes:
 Makeconf | 22 +++++++++++++++++-----
 1 file changed, 17 insertions(+), 5 deletions(-)


hooks/post-receive
-- 
Hurd



reply via email to

[Prev in Thread] Current Thread [Next in Thread]