1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

Improve portability of 'tr' invocation in PGAC_ARG_CHECK. Reported by

Olivier Prenant, fixed by Peter.
This commit is contained in:
Tom Lane
2006-11-30 21:44:12 +00:00
parent cd99debb3d
commit 7ac9d45f49
2 changed files with 3 additions and 3 deletions

2
configure vendored
View File

@ -24413,7 +24413,7 @@ for pgac_var in `set | sed 's/=.*//' | $EGREP 'with_|enable_'`; do
continue 2
fi
done
pgac_txt=`echo $pgac_var | tr '_' '-'`
pgac_txt=`echo $pgac_var | tr 'a_b' 'a-b'`
{ echo "$as_me:$LINENO: WARNING: option ignored: --$pgac_txt" >&5
echo "$as_me: WARNING: option ignored: --$pgac_txt" >&2;}
done