diff options
author | Heinrich Wendel <lanius@gentoo.org> | 2005-02-15 16:05:19 +0000 |
---|---|---|
committer | Heinrich Wendel <lanius@gentoo.org> | 2005-02-15 16:05:19 +0000 |
commit | ab0da8162122b6409164be3bf3fb7c5b5594e0b9 (patch) | |
tree | eb1e2f00254d07c610c1f577cc838d518df798e0 /x11-libs/motif-config/files | |
parent | Fix #82099. (diff) | |
download | gentoo-2-ab0da8162122b6409164be3bf3fb7c5b5594e0b9.tar.gz gentoo-2-ab0da8162122b6409164be3bf3fb7c5b5594e0b9.tar.bz2 gentoo-2-ab0da8162122b6409164be3bf3fb7c5b5594e0b9.zip |
small fix
(Portage version: 2.0.51-r15)
Diffstat (limited to 'x11-libs/motif-config/files')
-rwxr-xr-x | x11-libs/motif-config/files/motif-config-0.1 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11-libs/motif-config/files/motif-config-0.1 b/x11-libs/motif-config/files/motif-config-0.1 index f1d90cee04a7..45544f65d5f7 100755 --- a/x11-libs/motif-config/files/motif-config-0.1 +++ b/x11-libs/motif-config/files/motif-config-0.1 @@ -79,7 +79,7 @@ _activate_profile() { ln -s ${file} ${file/-${new}/} done # man pages - for file in `find /usr/share/man -name "*-${new}.*"`; do + for file in `find /usr/share/man -regex ".*-${new}\..x?.gz"`; do ln -s ${file} ${file/-${new}/} done @@ -115,7 +115,7 @@ _deactivate_profile() { rm -f ${file/-${current}/} done # man pages - for file in `find /usr/share/man -name "*-${current}.*"`; do + for file in `find /usr/share/man -regex ".*-${current}\..x?.gz"`; do rm -f ${file/-${current}/} done } |