diff options
Diffstat (limited to 'source/ap/ksh93/ksh93.SlackBuild')
-rwxr-xr-x | source/ap/ksh93/ksh93.SlackBuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source/ap/ksh93/ksh93.SlackBuild b/source/ap/ksh93/ksh93.SlackBuild index 3a002035..950f5459 100755 --- a/source/ap/ksh93/ksh93.SlackBuild +++ b/source/ap/ksh93/ksh93.SlackBuild @@ -1,7 +1,7 @@ #!/bin/bash # Copyright 2001 BSDi, Inc. Concord, CA, USA # Copyright 2004 Slackware Linux, Inc. Concord, CA, USA -# Copyright 2007, 2008, 2009, 2010, 2013, 2016, 2018 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2007, 2008, 2009, 2010, 2013, 2016, 2018, 2019 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -116,6 +116,9 @@ mv --verbose $PKG/usr/bin/ksh $PKG/bin/ksh.new || exit 1 rmdir $PKG/usr/bin || exit 1 strip --strip-unneeded $PKG/bin/ksh.new ( cd $PKG/bin ; ln -sf ksh rksh ) +if [ -r $PKG/usr/man/man1/ksh.1 ]; then + gzip -9 $PKG/usr/man/man1/ksh.1 +fi ( cd $PKG/usr/man/man1 ; ln -sf ksh.1.gz rksh.1.gz ) mkdir -p $PKG/usr/doc/ksh93-$VERSION |