diff options
author | Ludovic Courtès <ludo@gnu.org> | 2023-02-25 19:45:28 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-02-26 22:42:49 +0100 |
commit | ec93f243ff1a698c66af66108cbf956060c206c8 (patch) | |
tree | 687209850e356a983ee6e46ae18c71a36c612b3c /gnu/packages/gettext.scm | |
parent | 6c96b30b2ef8aabdaac12a817fb8aadb9e18cf06 (diff) |
gnu: gettext: Remove input label.
* gnu/packages/gettext.scm (gnu-gettext)[native-inputs]: Remove label.
Diffstat (limited to 'gnu/packages/gettext.scm')
-rw-r--r-- | gnu/packages/gettext.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/gettext.scm b/gnu/packages/gettext.scm index 0cc424acae..193786028b 100644 --- a/gnu/packages/gettext.scm +++ b/gnu/packages/gettext.scm @@ -169,9 +169,8 @@ translated messages from the catalogs. Nearly all GNU packages use Gettext.") (with-directory-excursion (string-append (assoc-ref outputs "out") "/share/emacs/site-lisp") - (symlink "start-po.el" "gettext-autoloads.el") - #t))))))) - (native-inputs `(("emacs" ,emacs-minimal))) ; for Emacs tools + (symlink "start-po.el" "gettext-autoloads.el")))))))) + (native-inputs (list emacs-minimal)) ;for Emacs tools (synopsis "Tools and documentation for translation"))) (define-public libtextstyle |