diff options
author | B. Watson <urchlay@slackware.uk> | 2024-07-15 03:45:33 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-07-20 08:09:05 +0700 |
commit | adee83a71dc91f42a4f29c6dde8c140a44030120 (patch) | |
tree | 2cc1e90454bdb91a63dc23a19f1acf6b28e632f2 /gis | |
parent | f056014b6caa93bf1db61fb924887bd72557357a (diff) |
gis/postgis: 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/postgis/postgis.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gis/postgis/postgis.SlackBuild b/gis/postgis/postgis.SlackBuild index 6c14107eda92..90adfae366e5 100644 --- a/gis/postgis/postgis.SlackBuild +++ b/gis/postgis/postgis.SlackBuild @@ -113,7 +113,7 @@ fi mkdir -p $PKG/usr/bin cd $PKG/$pgbindir for f in *; do - base=`basename $f` + base=$( basename $f ) echo ln -s $pgbindir/$base $PKG/usr/bin ln -s $pgbindir/$base $PKG/usr/bin done |