network/gtorrentviewer: Replaced backtick cmdsub.

Signed-off-by: B. Watson <urchlay@slackware.uk>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
B. Watson 2024-07-15 04:10:17 -04:00 committed by Willy Sudiarto Raharjo
parent 133fb57380
commit 2c8b99909b
No known key found for this signature in database
GPG key ID: 3F617144D7238786

View file

@ -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