From 66c4ffe36e07d5e5d8785e4c4987d19557c2c6fe Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Mon, 15 Jul 2024 04:40:17 -0400 Subject: [PATCH] system/motion: Replaced backtick cmdsub. Signed-off-by: B. Watson Signed-off-by: Willy Sudiarto Raharjo --- system/motion/motion.SlackBuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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