diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2024-06-19 15:20:13 +0800 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:18 +0200 |
commit | 887401ab869d10c5a423194197943188e7bec9ce (patch) | |
tree | 2d4bd5987306cf5156f7ca0ae10e513135b4d9c2 /gnu/packages/xorg.scm | |
parent | b287e368defc9e69ea0c011327c32c7786ca7929 (diff) | |
download | guix-887401ab869d10c5a423194197943188e7bec9ce.tar.gz guix-887401ab869d10c5a423194197943188e7bec9ce.zip |
gnu: uim: Fix build.
* gnu/packages/xorg.scm (uim)[arguments]: Don't refer to nonexistent
'fix-install-path' phase.
Change-Id: I2d5412ee36ef944ac5531ad50d215ad3cf082f0f
Diffstat (limited to 'gnu/packages/xorg.scm')
-rw-r--r-- | gnu/packages/xorg.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index ffd91cdb50..5fd90ed0b2 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -6334,7 +6334,7 @@ X11 servers, Windows, or macOS.") ("uim-el-agent" (string-append out "/bin/uim-el-agent")) ("uim-el-helper-agent" (string-append out "/bin/uim-el-helper-agent")))) #t)) - (add-after 'fix-install-path 'make-autoloads + (add-after 'install 'make-autoloads (lambda* (#:key outputs #:allow-other-keys) (emacs-generate-autoloads ,name (string-append (assoc-ref outputs "out") |