aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-12-21 16:55:38 +0000
committerBruce Momjian <bruce@momjian.us>1999-12-21 16:55:38 +0000
commit6a554a07b4d011df04cbfe01dfd91c8c3532aee8 (patch)
tree944d9f987ef0e82549d482bbf11fb736ba3bebf4
parente2aef4969450da69bc759e19f62a2d6caec4a3d9 (diff)
downloadpostgresql-6a554a07b4d011df04cbfe01dfd91c8c3532aee8.tar.gz
postgresql-6a554a07b4d011df04cbfe01dfd91c8c3532aee8.zip
Clean up qnx template finding.
-rw-r--r--src/configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/configure.in b/src/configure.in
index 3e6e5fb8c13..c1eeaee0d91 100644
--- a/src/configure.in
+++ b/src/configure.in
@@ -94,7 +94,7 @@ AC_ARG_WITH(template,
[
# lowercase $host
-host="`echo $host | tr 'A-Z' 'a-z'`"
+host="`echo $host | tr '[[A-Z]]' '[[a-z]]'`"
# First, try for a template exactly matching $host
if test -f "template/$host"
@@ -122,7 +122,7 @@ else
then TEMPLATE="$GUESS"
else
# Last chance ... maybe uname -s will match an entry.
- TEMPLATE=`uname -s | tr A-Z a-z`
+ TEMPLATE=`uname -s | tr '[[A-Z]]' '[[a-z]]'`
fi
fi
fi