From: Bruce Momjian Date: Tue, 21 Dec 1999 16:55:38 +0000 (+0000) Subject: Clean up qnx template finding. X-Git-Tag: REL7_0~985 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6a554a07b4d011df04cbfe01dfd91c8c3532aee8;p=postgresql Clean up qnx template finding. --- diff --git a/src/configure.in b/src/configure.in index 3e6e5fb8c1..c1eeaee0d9 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