From: Arran Cudbard-Bell Date: Thu, 21 May 2015 23:15:43 +0000 (-0400) Subject: Regen configure X-Git-Tag: release_3_0_9~325 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e6261fd109dd5c6b576d7eda293c603e8a9447fa;p=thirdparty%2Ffreeradius-server.git Regen configure --- diff --git a/configure b/configure index 1b117cd89cb..b78826d95c2 100755 --- a/configure +++ b/configure @@ -2418,10 +2418,9 @@ ac_config_headers="$ac_config_headers src/include/autoconf.h" - -RADIUSD_MAJOR_VERSION=`cat VERSION | sed 's/\..*//'` -RADIUSD_MINOR_VERSION=`cat VERSION | sed 's/^[^\.]*\.//' | sed 's/\..*$//'` -RADIUSD_INCRM_VERSION=`cat VERSION | sed 's/^.*\..*\.//' | sed 's/[\.-].*$//'` +RADIUSD_MAJOR_VERSION=`cat VERSION | cut -f1 -d.` +RADIUSD_MINOR_VERSION=`cat VERSION | cut -f2 -d.` +RADIUSD_INCRM_VERSION=`cat VERSION | cut -f3 -d. | sed 's/[\.-].*$//'` RADIUSD_VERSION=`echo | awk -v major="$RADIUSD_MAJOR_VERSION" \ -v minor="$RADIUSD_MINOR_VERSION" \