~ruther/guix-local

2320d4f0581bd996f38b2be6c6f513545cf160ec — Efraim Flashner 8 years ago 1738e24
gnu: glibc-locales: Use 'modify-phases' syntax.

* gnu/packages/base.scm (glibc-locales)[arguments]: Use 'modify-phases'
syntax.
1 files changed, 6 insertions(+), 6 deletions(-)

M gnu/packages/base.scm
M gnu/packages/base.scm => gnu/packages/base.scm +6 -6
@@ 883,12 883,12 @@ the 'share/locale' sub-directory of this package.")
                   ,@(package-arguments glibc))))
       (substitute-keyword-arguments args
         ((#:phases phases)
          `(alist-replace
            'build
            (lambda* (#:key outputs #:allow-other-keys)
              (zero? (system* "make" "localedata/install-locales"
                              "-j" (number->string (parallel-job-count)))))
            (alist-delete 'install ,phases)))
          `(modify-phases ,phases
             (replace 'build
               (lambda _
                 (zero? (system* "make" "localedata/install-locales"
                                 "-j" (number->string (parallel-job-count))))))
             (delete 'install)))
         ((#:configure-flags flags)
          `(append ,flags
                   ;; Use $(libdir)/locale/X.Y as is the case by default.