diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2023-09-29 19:45:18 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2023-09-29 22:31:51 +0200 |
commit | 83bf1d11eee59ddcea5d9b9d2487c163d862a414 (patch) | |
tree | 7cf7e06392b0c65d99e42c364fee14b7fe656af7 /testing | |
parent | e9c0b54c5cc41c2482d05f82b68e6bc6abfc0e77 (diff) | |
download | current-83bf1d11eee59ddcea5d9b9d2487c163d862a414.tar.gz current-83bf1d11eee59ddcea5d9b9d2487c163d862a414.tar.xz |
Fri Sep 29 19:45:18 UTC 202320230929194518
d/meson-1.2.2-x86_64-1.txz: Upgraded.
l/nodejs-20.8.0-x86_64-1.txz: Upgraded.
l/sof-firmware-2023.09-noarch-1.txz: Upgraded.
n/bluez-5.70-x86_64-1.txz: Upgraded.
n/php-8.2.11-x86_64-1.txz: Upgraded.
This is a bugfix release.
For more information, see:
https://www.php.net/ChangeLog-8.php#8.2.11
x/mesa-23.2.1-x86_64-1.txz: Upgraded.
x/xman-1.1.6-x86_64-1.txz: Upgraded.
xfce/xfce4-clipman-plugin-1.6.5-x86_64-1.txz: Upgraded.
Diffstat (limited to '')
-rwxr-xr-x | testing/source/glibc/glibc.SlackBuild | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/testing/source/glibc/glibc.SlackBuild b/testing/source/glibc/glibc.SlackBuild index 96dfe6598..0ef328ebb 100755 --- a/testing/source/glibc/glibc.SlackBuild +++ b/testing/source/glibc/glibc.SlackBuild @@ -342,9 +342,20 @@ fi find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip -g 2> /dev/null ) -# Fix info dir: -rm $PKG/usr/info/dir -gzip -9 $PKG/usr/info/* +# Compress manual pages: +find $PKG/usr/man -type f -exec gzip -9 {} \+ +for i in $( find $PKG/usr/man -type l ) ; do + ln -s $( readlink $i ).gz $i.gz + rm $i +done + +# Compress info files, if any: +if [ -d $PKG/usr/info ]; then + ( cd $PKG/usr/info + rm -f dir + gzip -9 * + ) +fi # This is junk rm $PKG/etc/ld.so.cache |