diff options
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 |
commit | 66c4ffe36e07d5e5d8785e4c4987d19557c2c6fe (patch) | |
tree | 43b083233eb1451ba1224acb6cf8e12c5f6abea1 /system/motion/motion.SlackBuild | |
parent | 93bb5e99ea89e2e1d8db7fe7fd76d381523700fb (diff) |
system/motion: Replaced backtick cmdsub.
Signed-off-by: B. Watson <urchlay@slackware.uk>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/motion/motion.SlackBuild')
-rw-r--r-- | system/motion/motion.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/motion/motion.SlackBuild b/system/motion/motion.SlackBuild index 09cea9dc897ad..23e336935a0aa 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 |