summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author B. Watson <urchlay@slackware.uk>2024-07-15 04:40:17 -0400
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2024-07-20 08:09:14 +0700
commit66c4ffe36e07d5e5d8785e4c4987d19557c2c6fe (patch)
tree43b083233eb1451ba1224acb6cf8e12c5f6abea1
parent93bb5e99ea89e2e1d8db7fe7fd76d381523700fb (diff)
downloadslackbuilds-66c4ffe36e07d5e5d8785e4c4987d19557c2c6fe.tar.gz
slackbuilds-66c4ffe36e07d5e5d8785e4c4987d19557c2c6fe.tar.xz
system/motion: Replaced backtick cmdsub.
Signed-off-by: B. Watson <urchlay@slackware.uk> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r--system/motion/motion.SlackBuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/motion/motion.SlackBuild b/system/motion/motion.SlackBuild
index 09cea9dc89..23e336935a 100644
--- a/system/motion/motion.SlackBuild
+++ b/system/motion/motion.SlackBuild
@@ -62,7 +62,7 @@ elif [ "$ARCH" = "x86_64" ]; then
fi
# Check ffmpeg existence
-ff=`pkg-config --exists libavfilter`
+ff=$( pkg-config --exists libavfilter )
if [ $? -eq 0 ]; then
ffmpeg=""
else