make-alpha
[Top][All Lists]
Advanced

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

[SCM] make branch, master, updated. 4.2.90


From: Paul D. Smith
Subject: [SCM] make branch, master, updated. 4.2.90
Date: Mon, 26 Aug 2019 08:28:00 -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 "make".

The branch, master has been updated
       via  e304a03b6d1f9f56b0f949074725c272a53e3080 (commit)
       via  2273ab7069b83669daeb4b36515631a73b80b5ee (commit)
       via  2e388a18a196abef4e846517a686d436e614cd12 (commit)
       via  39bf50b2dae5a6aa2ab0ce803b81959cec84b03a (commit)
       via  a0c17b5af1b44d8cb70fead310d8cb73fe051e59 (commit)
       via  a483334f9764813e4140399e454f5120f2ccdfe4 (commit)
       via  069f2bca995ccbf387eb0943a9933c292c0485c7 (commit)
       via  40847ce9b8dbbfa9fcdcf77c9ed14704adfb53a9 (commit)
       via  a01c5bee028e5892d4c60c7fd4f4f5b734b14839 (commit)
       via  38e96eadea6e2cd42a0f414959bac327de9f468a (commit)
       via  d7cfbf196124af2addd3d6f159ab84313f95e665 (commit)
       via  ee167c650e53bde545f67152092b4669c76186ef (commit)
       via  4d00ceba264a9fd04241dcd2685526ce64c1346b (commit)
      from  1c045bca5270f74baf0cecc665391220373267c1 (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 e304a03b6d1f9f56b0f949074725c272a53e3080
Author: Paul Smith <address@hidden>
Date:   Mon Aug 26 07:31:38 2019 -0400

    * NEWS: Update for pre-release

commit 2273ab7069b83669daeb4b36515631a73b80b5ee
Author: Paul Smith <address@hidden>
Date:   Sun Aug 25 17:11:10 2019 -0400

    Update maintainer mode to support debug wait points.
    
    Make a spin() method available when compiled in maintainer mode.
    If a file exists in the working directory with a specific name,
    make will sleep until the file is deleted.
    
    Ensure that maintainer mode is enabled on Windows, using the same
    algorithm we use on POSIX / autoconf systems.
    
    * build_w32.bat: If maintMakefile exists, enable maintainer mode.
    * src/main.c (main): Replace Windows-only suspend flag with spin().
    * src/makeint.h: A SPIN() macro calls spin() in maintainer mode.
    * src/misc.c (spin): If a spin file exists sleep until it's deleted.

commit 2e388a18a196abef4e846517a686d436e614cd12
Author: Paul Smith <address@hidden>
Date:   Sun Aug 25 13:47:13 2019 -0400

    * tests/scripts/features/archives: [SV 54395] Support non-GNU ar.

commit 39bf50b2dae5a6aa2ab0ce803b81959cec84b03a
Author: Paul Smith <address@hidden>
Date:   Sun Aug 25 00:20:38 2019 -0400

    * tests/scripts/misc/general3: Add more tests for SHELL/.SHELLFLAGS

commit a0c17b5af1b44d8cb70fead310d8cb73fe051e59
Author: Paul Smith <address@hidden>
Date:   Sat Aug 24 17:41:45 2019 -0400

    * src/job.c (construct_command_argv): Remove unused VMS code

commit a483334f9764813e4140399e454f5120f2ccdfe4
Author: Paul Smith <address@hidden>
Date:   Sat Aug 24 17:40:41 2019 -0400

    * src/job.c (child_execute_job): Set pid to -1 on posix_spawn failure.

commit 069f2bca995ccbf387eb0943a9933c292c0485c7
Author: Paul Smith <address@hidden>
Date:   Sat Aug 24 14:56:33 2019 -0400

    * bootstrap: Update from latest gnulib version

commit 40847ce9b8dbbfa9fcdcf77c9ed14704adfb53a9
Author: Paul Smith <address@hidden>
Date:   Sat Aug 24 14:41:10 2019 -0400

    * scripts/copyright-update: Use git ls-files for controlled files

commit a01c5bee028e5892d4c60c7fd4f4f5b734b14839
Author: Paul Smith <address@hidden>
Date:   Sat Aug 24 14:13:59 2019 -0400

    * po/LINGUAS: Add a translation for Bulgarian.

commit 38e96eadea6e2cd42a0f414959bac327de9f468a
Author: Christian Eggers <address@hidden>
Date:   Thu Jun 6 12:42:38 2019 +0200

    [SV 56449] (Windows) Use slow path if '%' appears in the command
    
    * src/job.c (sh_chars_dos): Add '%' as a special character
    * src/job.c (construct_command_argv_internal): Check for '%' in quotes
    
    For the windows version of make, a recipe line cannot be executed
    diretly by make (without a shell) if a '%' character is present. This
    character starts a cmd.exe escape sequence.
    
    Signed-off-by: Christian Eggers <address@hidden>
    Copyright-paperwork-exempt: yes

commit d7cfbf196124af2addd3d6f159ab84313f95e665
Author: Paul Smith <address@hidden>
Date:   Sun Jul 14 09:20:14 2019 -0400

    * src/read.c (parse_file_seq): Update comments.

commit ee167c650e53bde545f67152092b4669c76186ef
Author: Mike Haboustak <address@hidden>
Date:   Thu Jul 11 21:08:38 2019 -0400

    [SV 28456] Don't override $< when no default rule has been defined
    
    The check for matching a file's command to the default rule's command
    does not account for null. If no .DEFAULT is defined a rule with no
    recipe has it's $< variable set to the value of $@. This breaks second
    expansion, particularly when used with pattern rules.
    
    * src/commands.c [set_file_variables]: Check that cmds is set
    * tests/scripts/features/se_explicit: Test case
    * tests/scripts/features/se_implicit: Test case
    
    Copyright-paperwork-exempt: yes

commit 4d00ceba264a9fd04241dcd2685526ce64c1346b
Author: Paul Smith <address@hidden>
Date:   Sat Jul 13 08:34:45 2019 -0400

    Switch to the gnulib version of strerror()
    
    * bootstrap.conf: Add strerror module
    * configure.ac: Remove strerror check
    * src/misc.c: Remove local strerror() implementation
    * src/config.ami.template: Remove HAVE_STRERROR
    * src/config.h-vms.template: Ditto.
    * src/config.h.W32.template: Ditto.

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

Summary of changes:
 NEWS                               |  4 +--
 bootstrap                          | 15 ++++++++-
 bootstrap.conf                     |  1 +
 build_w32.bat                      | 10 ++++++
 configure.ac                       |  2 +-
 po/LINGUAS                         |  1 +
 scripts/copyright-update           | 12 ++++---
 src/commands.c                     |  2 +-
 src/config.ami.template            |  3 --
 src/config.h-vms.template          |  3 --
 src/config.h.W32.template          |  3 --
 src/job.c                          | 57 ++++++-------------------------
 src/main.c                         | 25 ++++----------
 src/makeint.h                      | 10 ++++--
 src/misc.c                         | 42 ++++++++++++-----------
 src/read.c                         |  6 ++--
 tests/scripts/features/archives    |  6 ++--
 tests/scripts/features/se_explicit | 10 ++++++
 tests/scripts/features/se_implicit | 56 +++++++++++++++----------------
 tests/scripts/misc/general3        | 69 +++++++++++++++++++++++++++-----------
 20 files changed, 179 insertions(+), 158 deletions(-)


hooks/post-receive
-- 
make



reply via email to

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