summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author Andrew Clemons2022-08-23 14:12:37 +0200
committer Andrew Clemons2022-08-23 14:12:37 +0200
commit90f517a3e912456914950159f1cbbf361ce4eeab (patch)
treee796a45fa0ab82d8dd7a7c18476aa723a56e0cf6 /system
parent7c50924fea536c01c03d0f1d118fd4a346e02444 (diff)
downloadslackbuilds-90f517a3e912456914950159f1cbbf361ce4eeab.tar.gz
system/nwipe: Remove template comments.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Diffstat (limited to 'system')
-rw-r--r--system/nwipe/nwipe.SlackBuild1
1 files changed, 0 insertions, 1 deletions
diff --git a/system/nwipe/nwipe.SlackBuild b/system/nwipe/nwipe.SlackBuild
index 71200fcc17..59dc6d2f4f 100644
--- a/system/nwipe/nwipe.SlackBuild
+++ b/system/nwipe/nwipe.SlackBuild
@@ -102,7 +102,6 @@ make install DESTDIR=$PKG
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-# Compress man 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