diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2024-02-10 08:34:37 +0900 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-02-10 16:17:23 +0700 |
commit | 3a5b9bad73d52082b9d73f04138979df1afe26f7 (patch) | |
tree | 17d85e6f2cb01e35f4c0c15e180b65e19828f1c0 /python/python3-routes | |
parent | 5cb2527c9ffe3c462abc6f235607dc3f47e36d6b (diff) |
python/python3-routes: Add missing chown step.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python3-routes')
-rw-r--r-- | python/python3-routes/python3-routes.SlackBuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/python3-routes/python3-routes.SlackBuild b/python/python3-routes/python3-routes.SlackBuild index 37b96b681d7c..ed37315c5a14 100644 --- a/python/python3-routes/python3-routes.SlackBuild +++ b/python/python3-routes/python3-routes.SlackBuild @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=python3-routes SRCNAM=Routes VERSION=${VERSION:-2.5.1} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -58,6 +58,7 @@ rm -rf $PRGNAM-$VERSION rm -rf $SRCNAM-$VERSION tar xvf $CWD/$SRCNAM-$VERSION.tar.gz cd $SRCNAM-$VERSION +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 \ |