1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Remove extra backets in tr test.

This commit is contained in:
Bruce Momjian
1997-09-17 20:14:16 +00:00
parent f05642bbcc
commit b02086b303
2 changed files with 4 additions and 4 deletions

4
src/configure vendored
View File

@ -1515,9 +1515,9 @@ TRSTRINGS=`echo ABCdef | $TR 'a-z' 'A-Z' 2>/dev/null | grep ABCDEF`
TRCLASS=`echo ABCdef | $TR ':lower:' ':upper:' 2>/dev/null | grep ABCDEF`
if test "$TRSTRINGS" = "ABCDEF"; then
TRARGS="'[a-z]' '[A-Z]'"
TRARGS="'a-z' 'A-Z'"
elif test "$TRCLASS" = "ABCDEF"; then
TRARGS="\"[:lower:]\" \"[:upper:]\""
TRARGS="\":lower:\" \":upper:\""
else
{ echo "configure: error: "Can\'t find method to covert from upper to lower case with tr"" 1>&2; exit 1; }
fi