diff options
author | Sebastien BALLET <slacker6896@gmail.com> | 2017-07-15 07:16:55 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-07-15 07:16:55 +0700 |
commit | cc8549a64b992a5324c54dd163b42d626391e994 (patch) | |
tree | bd7ef504ea8d438c04f70ccbb885a998a61658d1 | |
parent | 299bc3e731defb5bb65ac3c783645c6178b82236 (diff) | |
download | slackbuilds-cc8549a64b992a5324c54dd163b42d626391e994.tar.gz |
system/tilda: Fix ownership.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | system/tilda/tilda.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/tilda/tilda.SlackBuild b/system/tilda/tilda.SlackBuild index ba0c12e7c5..4abb3d850b 100644 --- a/system/tilda/tilda.SlackBuild +++ b/system/tilda/tilda.SlackBuild @@ -85,7 +85,7 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true mkdir -p $PKG/usr/man/man1 -cp -a $CWD/tilda.1 $PKG/usr/man/man1 +cp $CWD/tilda.1 $PKG/usr/man/man1 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 |