From: Bruce Momjian Date: Fri, 17 Dec 1999 18:18:26 +0000 (+0000) Subject: Lowercase $host for QNX. X-Git-Tag: REL7_0~1007 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9f013a552a3afb3f9fffc19d2e68cf6d5c345b05;p=postgresql Lowercase $host for QNX. --- diff --git a/src/configure.in b/src/configure.in index 3e97ab4331..3d8b6b7305 100644 --- a/src/configure.in +++ b/src/configure.in @@ -92,6 +92,10 @@ AC_ARG_WITH(template, see template directory], [ TEMPLATE=$withval ], [ + +# lowercase $host +host="`echo $host | tr '[A-Z]' '[a-z]'`" + # First, try for a template exactly matching $host if test -f "template/$host" then TEMPLATE="$host"