diff options
| author | Bruce Momjian | 2006-02-28 21:59:19 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2006-02-28 21:59:19 +0000 |
| commit | c979afb7e0dc1fbe52e4832cdba04b44e704d1af (patch) | |
| tree | f5883eb3e061ea578f57acec8c692632820a1254 /configure.in | |
| parent | 2b8afe6193c6e64d956c400397c421be4065acaa (diff) | |
Fix PG_VERSION_NUM awk -F parameter.
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 6350b1af6fb..b22119f333b 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -dnl $PostgreSQL: pgsql/configure.in,v 1.451 2006/02/28 16:41:21 momjian Exp $ +dnl $PostgreSQL: pgsql/configure.in,v 1.452 2006/02/28 21:59:19 momjian Exp $ dnl dnl Developers, please strive to achieve this order: dnl @@ -587,7 +587,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}'`" AC_DEFINE_UNQUOTED(PG_VERSION_NUM, $PG_VERSION_NUM, [PostgreSQL version as a number]) ## |
