1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-16 22:25:55 +02:00

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

* gnu/packages/base.scm (glibc-locales)[arguments]: Use invoke.
This commit is contained in:
Mark H Weaver
2018-03-16 01:18:04 -04:00
parent 44161fe16c
commit bf8e8a7428
+2 -2
View File
@@ -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)