diff options
author | Michał Górny <mgorny@gentoo.org> | 2016-02-22 22:34:36 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2016-02-22 22:41:52 +0100 |
commit | 8ff5406d6d20b69f7ca05b3f760b72b92fe54f34 (patch) | |
tree | 02f8b3c40d9a9a795c45609946df55c6286fc78a | |
parent | Bump to 20160207 (diff) | |
download | eselect-python-8ff5406d6d20b69f7ca05b3f760b72b92fe54f34.tar.gz eselect-python-8ff5406d6d20b69f7ca05b3f760b72b92fe54f34.tar.bz2 eselect-python-8ff5406d6d20b69f7ca05b3f760b72b92fe54f34.zip |
set_man_symlink: fix variables
-rw-r--r-- | python.eselect.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python.eselect.in b/python.eselect.in index e542f5e..701c02b 100644 --- a/python.eselect.in +++ b/python.eselect.in @@ -135,7 +135,7 @@ set_man_symlink() { return 1 fi - ln -nfs "${target}${extension}" "${MAN_PATH}/python${extension}" || die + ln -nfs "${target}${suffix}" "${MAN_PATH}/python${suffix}" || die } # Set OSX framework symlinks |