From c979afb7e0dc1fbe52e4832cdba04b44e704d1af Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 28 Feb 2006 21:59:19 +0000 Subject: Fix PG_VERSION_NUM awk -F parameter. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index 2b9f669045..a12e467ae8 100755 --- a/configure +++ b/configure @@ -4744,7 +4744,7 @@ fi # Supply a numeric version string for use by 3rd party add-ons PG_VERSION_NUM="`echo "$PACKAGE_VERSION" | sed 's/A-Za-z.*$//' | -$AWK -F'\.' '{printf \"%d%02d%02d\", $1, $2, (NF >= 3) ? $3 : 0}'`" +$AWK -F'.' '{printf \"%d%02d%02d\", $1, $2, (NF >= 3) ? $3 : 0}'`" cat >>confdefs.h <<_ACEOF #define PG_VERSION_NUM $PG_VERSION_NUM -- cgit v1.2.1