diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-11-30 21:44:12 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-11-30 21:44:12 +0000 |
commit | 7ac9d45f49caaddc56d1aeb5038fddfb53ce86ac (patch) | |
tree | 026183398457a259a0a494508a170e3893248b98 /configure | |
parent | cd99debb3d0ff7c4ad7dd7f4b073d1631dd47908 (diff) | |
download | postgresql-7ac9d45f49caaddc56d1aeb5038fddfb53ce86ac.tar.gz |
Improve portability of 'tr' invocation in PGAC_ARG_CHECK. Reported by
Olivier Prenant, fixed by Peter.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |