aboutsummaryrefslogtreecommitdiff
path: root/nxcomp
diff options
context:
space:
mode:
authorMihai Moldovan <ionic@ionic.de>2018-03-07 19:00:39 +0100
committerMihai Moldovan <ionic@ionic.de>2018-03-07 19:00:39 +0100
commit3352cfaba74091b1780a29ffb915a448a1f510a4 (patch)
tree27fd193d69f3eaa5e1d76f51eae645b11c550c96 /nxcomp
parent76e7d26b8b9efd6811970968d8b03d63b8aaf338 (diff)
downloadnx-libs-3352cfaba74091b1780a29ffb915a448a1f510a4.tar.gz
nx-libs-3352cfaba74091b1780a29ffb915a448a1f510a4.tar.bz2
nx-libs-3352cfaba74091b1780a29ffb915a448a1f510a4.zip
nxcomp{,shad}/configure.ac: replace versionating non-portable sed construct with hopefully more portable awk construct.
Diffstat (limited to 'nxcomp')
-rw-r--r--nxcomp/configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/nxcomp/configure.ac b/nxcomp/configure.ac
index da0832123..a1839c719 100644
--- a/nxcomp/configure.ac
+++ b/nxcomp/configure.ac
@@ -22,7 +22,7 @@ AC_PROG_LIBTOOL
COMP_VERSION=nxcomp_version
AC_SUBST([COMP_VERSION])
-LT_COMP_VERSION=[`echo $COMP_VERSION | sed -E -e 's/^([0-9]+\.[0-9]+\.[0-9]+).*$/\1/' -e 's/\./:/g'`]
+LT_COMP_VERSION=["$(printf '%s\n' "${COMP_VERSION}" | awk -F '.' '/^[0-9]+\.[0-9]+\.[0-9]+.*$/ { print $1 ":" $2 ":" $3; }')"]
AC_SUBST([LT_COMP_VERSION])
# Silence warning: ar: 'u' modifier ignored since 'D' is the default