From 3352cfaba74091b1780a29ffb915a448a1f510a4 Mon Sep 17 00:00:00 2001 From: Mihai Moldovan Date: Wed, 7 Mar 2018 19:00:39 +0100 Subject: nxcomp{,shad}/configure.ac: replace versionating non-portable sed construct with hopefully more portable awk construct. --- nxcomp/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nxcomp') 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 -- cgit v1.2.3