This is an automated email from the git hooks/post-receive script.

bavier pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 4dfbebd  gnu: stress-make: Fix build with make 4.3.
4dfbebd is described below

commit 4dfbebdb6460d5a42345562f4d3ecc2baaeb2b4d
Author: Eric Bavier <[email protected]>
AuthorDate: Sun Jul 19 10:36:44 2020 -0500

    gnu: stress-make: Fix build with make 4.3.
    
    * gnu/packages/debug.scm (stress-make): Update to latest upstream commit.
    [arguments]: Adjust source file name for substitute*.
---
 gnu/packages/debug.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/debug.scm b/gnu/packages/debug.scm
index f3e01de..2a3e6ed 100644
--- a/gnu/packages/debug.scm
+++ b/gnu/packages/debug.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2014, 2015, 2016, 2017, 2019 Eric Bavier 
<[email protected]>
+;;; Copyright © 2014, 2015, 2016, 2017, 2019, 2020 Eric Bavier 
<[email protected]>
 ;;; Copyright © 2016, 2017, 2018, 2020 Efraim Flashner <[email protected]>
 ;;; Copyright © 2018 Tobias Geerinckx-Rice <[email protected]>
 ;;; Copyright © 2018, 2019 Rutger Helling <[email protected]>
@@ -393,8 +393,8 @@ server and embedded PowerPC, and S390 guests.")
     (supported-systems (delete "mips64el-linux" %supported-systems))))))
 
 (define-public stress-make
-  (let ((commit "9e92dff8f0157f012aaf31de5b8b8112ad720100")
-        (revision "1"))                 ;No official source distribution
+  (let ((commit "97815bed8060de33952475b3498767c91f59ffd9")
+        (revision "2"))                 ;No official source distribution
     (package
       (name "stress-make")
       (version (git-version "1.0" revision commit))
@@ -407,7 +407,7 @@ server and embedded PowerPC, and S390 guests.")
          (file-name (git-file-name name version))
          (sha256
           (base32
-           "1z1yiwnqyzv3v6152fnjbfh2lr8q8fi5xxfdclnr8l8sd4c1rasp"))))
+           "0k55cy7x0hlc6rgpascl6ibhcfxaash3p9r9r8kwvbm3zag1rmac"))))
       (build-system gnu-build-system)
       (native-inputs
        `(("autoconf" ,autoconf)
@@ -431,7 +431,7 @@ server and embedded PowerPC, and S390 guests.")
              (add-after 'unpack-make 'set-default-shell
                (lambda _
                  ;; Taken mostly directly from (@ (gnu packages base) gnu-make)
-                 (substitute* (string-append ,make-dir "/job.c")
+                 (substitute* (string-append ,make-dir "/src/job.c")
                    (("default_shell = .*$")
                     (format #f "default_shell = \"~a\";\n"
                             (which "sh"))))))

Reply via email to