guix-commits
[Top][All Lists]
Advanced

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

14/30: gnu: glibc-locales: Use invoke instead of system*.


From: Mark H. Weaver
Subject: 14/30: gnu: glibc-locales: Use invoke instead of system*.
Date: Fri, 16 Mar 2018 05:03:37 -0400 (EDT)

mhw pushed a commit to branch core-updates
in repository guix.

commit bf8e8a742836626135060818adbe76b2aa09714c
Author: Mark H Weaver <address@hidden>
Date:   Fri Mar 16 01:18:04 2018 -0400

    gnu: glibc-locales: Use invoke instead of system*.
    
    * gnu/packages/base.scm (glibc-locales)[arguments]: Use invoke.
---
 gnu/packages/base.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index 7569e30..336a2f9 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -963,8 +963,8 @@ the 'share/locale' sub-directory of this package.")
           `(modify-phases ,phases
              (replace 'build
                (lambda _
-                 (zero? (system* "make" "localedata/install-locales"
-                                 "-j" (number->string (parallel-job-count))))))
+                 (invoke "make" "localedata/install-locales"
+                         "-j" (number->string (parallel-job-count)))))
              (delete 'install)
              (delete 'move-static-libs)))
          ((#:configure-flags flags)



reply via email to

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