diff options
author | B. Watson <yalhcru@gmail.com> | 2021-09-10 03:06:30 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-10-13 00:52:14 +0700 |
commit | 265f93bd141be016e40fc1d2728c637c2d00b808 (patch) | |
tree | e496bf39c0d8be78c1d19b00b92b7c1c73ca0805 /graphics/xli/xli.SlackBuild | |
parent | f400f109d1fbd575e434db3c787b2df0f5353c9e (diff) |
graphics/xli: Remove template comment.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'graphics/xli/xli.SlackBuild')
-rw-r--r-- | graphics/xli/xli.SlackBuild | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/graphics/xli/xli.SlackBuild b/graphics/xli/xli.SlackBuild index 3603f4803691..4aeafb8b41cd 100644 --- a/graphics/xli/xli.SlackBuild +++ b/graphics/xli/xli.SlackBuild @@ -55,9 +55,6 @@ if [ -z "$ARCH" ]; then esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -90,11 +87,8 @@ rm -rf $PRGNAM-$SRCVER tar xvf $CWD/$PRGNAM-$SRCVER.tar.gz cd $PRGNAM-$SRCVER chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \+ -o \ - \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+ +find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ + \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ # These patches are from NetBSD's pkgsrc: # <http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/graphics/xli/patches/?only_with_tag=MAIN> |