diff options
author | B. Watson <urchlay@slackware.uk> | 2024-07-15 03:44:56 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-07-20 08:09:05 +0700 |
commit | befc5a27f0cdf1be7f874dc3cb459a10a78159d7 (patch) | |
tree | 77f07f0448de24417ffcb3799df85c7e542514fe /gis | |
parent | e1828c69ee4f28f82773e4788b4856a37c8d9cac (diff) |
gis/grass: Replaced backtick cmdsub.
Signed-off-by: B. Watson <urchlay@slackware.uk>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'gis')
-rw-r--r-- | gis/grass/grass.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gis/grass/grass.SlackBuild b/gis/grass/grass.SlackBuild index 2ffb4f5b844f..a5076e161d46 100644 --- a/gis/grass/grass.SlackBuild +++ b/gis/grass/grass.SlackBuild @@ -26,7 +26,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=grass VERSION=${VERSION:-7.8.0} -SHRTVER=`echo $VERSION | sed "s/\([0-9]*\).\([0-9]*\)..*/\1\2/"` +SHRTVER=$( echo $VERSION | sed "s/\([0-9]*\).\([0-9]*\)..*/\1\2/" ) BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} |