diff options
Diffstat (limited to 'system/pax-utils/pax-utils.SlackBuild')
-rw-r--r-- | system/pax-utils/pax-utils.SlackBuild | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/system/pax-utils/pax-utils.SlackBuild b/system/pax-utils/pax-utils.SlackBuild index d8b732e06cf5..b92870ccd783 100644 --- a/system/pax-utils/pax-utils.SlackBuild +++ b/system/pax-utils/pax-utils.SlackBuild @@ -6,14 +6,15 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20240925 bkw: update for v1.3.8. # 20230507 bkw: BUILD=2, fix shebang in lddtree. No idea how that # got past me in the first place... cd $(dirname $0) ; CWD=$(pwd) PRGNAM=pax-utils -VERSION=${VERSION:-1.3.7} -BUILD=${BUILD:-2} +VERSION=${VERSION:-1.3.8} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -57,8 +58,8 @@ rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . -find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ - \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ +find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} + -o \ + \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} + mkdir build cd build |