aboutsummaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2024-07-15 04:37:36 -0400
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2024-07-20 08:09:13 +0700
commitbdb426e35830787d44e094d1795fc3e736bebbaa (patch)
tree9cf974eb892862601ebff0aac1d2ba78a1745222 /system
parent8628b3ba3977714d44c5b3f5aa878c84cf029fec (diff)
system/apache-activemq: Replaced backtick cmdsub.
Signed-off-by: B. Watson <urchlay@slackware.uk> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r--system/apache-activemq/apache-activemq.SlackBuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/apache-activemq/apache-activemq.SlackBuild b/system/apache-activemq/apache-activemq.SlackBuild
index 45eb96048343..d87a5a50d53c 100644
--- a/system/apache-activemq/apache-activemq.SlackBuild
+++ b/system/apache-activemq/apache-activemq.SlackBuild
@@ -130,7 +130,7 @@ chown -R $ACTIVEMQ_USER:$ACTIVEMQ_GROUP $PKG/var/{run,lib,log}/activemq
( cd $PKG/etc/activemq
sed -i -e 's:data/activemq.log:log/activemq.log:g' *
sed -i -e 's:data/audit.log:log/audit.log:g' *
- for F in `find . -type f`; do mv $F $F.new; done
+ for F in $( find . -type f ); do mv $F $F.new; done
)
# These links are still needed for activemq to actually work