commit b030f99
hovercats
·
2024-01-07 01:10:25 +0000 UTC
parent 48a2b5d
gcc: dont need to use loop for compressing manpages
1 files changed,
+2,
-3
+2,
-3
1@@ -66,6 +66,5 @@ ln -sf x86_64-linux-musl-gcc-ar "$1/bin/x86_64-linux-musl-ar"
2 ln -sf x86_64-linux-musl-gcc-ranlib "$1/bin/x86_64-linux-musl-ranlib"
3 cp -f ../c99 "$1/bin"
4
5-for p in "$1/share/man/man*/*"; do
6- gzip -9 -n "$p"
7-done
8+# Compress manpages
9+gzip -9 -n "$1/share/man/man*/*"