diff options
author | B. Watson <urchlay@slackware.uk> | 2024-07-15 04:13:09 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-07-20 08:09:11 +0700 |
commit | 15cc4705de706218b1cc947a49306802cac3fcda (patch) | |
tree | 8a6ad5565efb7ad69b70cbb8841e9edff91759df | |
parent | 5aff7548d2d406fe0e4f0baeb1f31e39d81e2b14 (diff) |
network/opensm: Replaced backtick cmdsub.
Signed-off-by: B. Watson <urchlay@slackware.uk>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | network/opensm/opensm.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/network/opensm/opensm.SlackBuild b/network/opensm/opensm.SlackBuild index 2b51a9254e..9c086f993b 100644 --- a/network/opensm/opensm.SlackBuild +++ b/network/opensm/opensm.SlackBuild @@ -63,7 +63,7 @@ fi METIS=${METIS:-no} WITH_METIS= -if [ "`echo $METIS | tr 'a-z' 'A-Z'`" = YES ]; then +if [ "$( echo $METIS | tr 'a-z' 'A-Z' )" = YES ]; then for inc_dir in /usr/include/metis /usr/include/suitesparse; do if [ -e $inc_dir/metis.h ]; then WITH_METIS="--with-metis --with-metis-includes=$inc_dir" |