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

Update configure.

This commit is contained in:
Bruce Momjian
1997-09-19 22:02:26 +00:00
parent ccca61b5fe
commit e9cd0f2e6b
2 changed files with 6 additions and 6 deletions

6
src/configure vendored
View File

@ -1511,13 +1511,13 @@ done
test -n "$TR" || TR="NOT_FOUND"
TRSTRINGS=`echo ABCdef | $TR '[a-z]' '[A-Z]' 2>/dev/null | grep ABCDEF`
TRCLASS=`echo ABCdef | $TR '[:lower:]' '[:upper:]' 2>/dev/null | grep ABCDEF`
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]'"
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