diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-12-21 16:56:42 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-12-21 16:56:42 +0000 |
commit | 04c78e2eb45ec20e02abd0aee1b8a59068ee26c1 (patch) | |
tree | cf517d4af040c87413780e841d761c4dc8fb09f0 | |
parent | 6a554a07b4d011df04cbfe01dfd91c8c3532aee8 (diff) | |
download | postgresql-04c78e2eb45ec20e02abd0aee1b8a59068ee26c1.tar.gz postgresql-04c78e2eb45ec20e02abd0aee1b8a59068ee26c1.zip |
autoconf
-rwxr-xr-x | src/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/configure b/src/configure index 15cfa8d9b16..c67d0fcbee0 100755 --- a/src/configure +++ b/src/configure @@ -701,7 +701,7 @@ else # 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" @@ -729,7 +729,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 |