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 | 7e5e5cdffb0826da5e3d3bd52cb3c9611cb19c97 (patch) | |
tree | bf362ea1fea1b5385ffc95e6be8ad483226dfd83 /x11-libs | |
parent | Fix #82099. (diff) | |
download | historical-7e5e5cdffb0826da5e3d3bd52cb3c9611cb19c97.tar.gz historical-7e5e5cdffb0826da5e3d3bd52cb3c9611cb19c97.tar.bz2 historical-7e5e5cdffb0826da5e3d3bd52cb3c9611cb19c97.zip |
small fix
Package-Manager: portage-2.0.51-r15
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/motif-config/Manifest | 2 | ||||
-rwxr-xr-x | x11-libs/motif-config/files/motif-config-0.1 | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/x11-libs/motif-config/Manifest b/x11-libs/motif-config/Manifest index 9d2b1cca8676..9c2356a2a9e7 100644 --- a/x11-libs/motif-config/Manifest +++ b/x11-libs/motif-config/Manifest @@ -1,5 +1,5 @@ MD5 8e8719acd2a777294914e060d4f86976 motif-config-0.1.ebuild 1006 MD5 7d70d9fe42eb317221f10ba1d8a9a06e ChangeLog 386 MD5 503ccb1138f9c49f0855884d830988a6 metadata.xml 253 -MD5 31cffcac67f38408ba2a20655924b149 files/motif-config-0.1 6368 +MD5 2291cfc400e79688db46f024ec79aba2 files/motif-config-0.1 6384 MD5 d41d8cd98f00b204e9800998ecf8427e files/digest-motif-config-0.1 0 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 } |