diff options
author | B. Watson <urchlay@slackware.uk> | 2024-07-15 04:10:17 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-07-20 08:09:10 +0700 |
commit | 2c8b99909b88d4d9a3799c28bcd57b55fa5ae486 (patch) | |
tree | c7be531b6c77cbed31818003f96710725f6e55ca /network/gtorrentviewer | |
parent | 133fb573802933774b86d8ae8f1f8fcbe0dac1ef (diff) |
network/gtorrentviewer: Replaced backtick cmdsub.
Signed-off-by: B. Watson <urchlay@slackware.uk>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/gtorrentviewer')
-rw-r--r-- | network/gtorrentviewer/gtorrentviewer.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/network/gtorrentviewer/gtorrentviewer.SlackBuild b/network/gtorrentviewer/gtorrentviewer.SlackBuild index 90b73f2eb68c..3ada24b4ad0a 100644 --- a/network/gtorrentviewer/gtorrentviewer.SlackBuild +++ b/network/gtorrentviewer/gtorrentviewer.SlackBuild @@ -90,7 +90,7 @@ find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} + -o \ # with "patch -p1". The curl-types, desktop, and dso-linking patches aren't # needed because their issues are fixed by code in this script. # The manpage patch is a grammar fix, done by me. -for i in `cat $CWD/patches/series`; do +for i in $( cat $CWD/patches/series ); do echo "=== applying $i" patch -p1 < $CWD/patches/$i done |