diff options
author | 2014-04-08 08:25:39 +0200 | |
---|---|---|
committer | 2014-04-08 08:25:39 +0200 | |
commit | a2897617562d0ad1586aa706c8439bb58ce530fe (patch) | |
tree | 5c985c2fb73257ecb81d89ed0cf34b1a6ad967f8 | |
parent | Remove obsolete MANPAGELIST_OLD variable. (diff) | |
download | emacs-tools-a2897617562d0ad1586aa706c8439bb58ce530fe.tar.gz emacs-tools-a2897617562d0ad1586aa706c8439bb58ce530fe.tar.bz2 emacs-tools-a2897617562d0ad1586aa706c8439bb58ce530fe.zip |
Don't look for emacs-${target}.1 as emacs.1 man page target.
* emacs.eselect (set_man_symlinks): Omit emacs-${target}.1 from
the list; the symlink for the emacs.1 man page is handled by
set_symlinks() already.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | emacs.eselect | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2014-04-08 Ulrich Müller <ulm@gentoo.org> + + * emacs.eselect (set_man_symlinks): Omit emacs-${target}.1 from + the list; the symlink for the emacs.1 man page is handled by + set_symlinks() already. + 2014-03-18 Ulrich Müller <ulm@gentoo.org> * emacs.eselect (MANPAGELIST_OLD): Remove variable, the gfdl.1 diff --git a/emacs.eselect b/emacs.eselect index de37cd5..aad1587 100644 --- a/emacs.eselect +++ b/emacs.eselect @@ -75,7 +75,7 @@ set_bin_symlinks() { set_man_symlinks() { # Set symlinks to man pages local target=$1 suffix f i - for f in emacs ${MANPAGELIST}; do + for f in ${MANPAGELIST}; do for i in "${EROOT}/usr/share/man/man1/${f}-${target}.1"*; do if [[ -f ${i} ]]; then # target file exists; determine compression suffix |