From 9f013a552a3afb3f9fffc19d2e68cf6d5c345b05 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Fri, 17 Dec 1999 18:18:26 +0000 Subject: [PATCH] Lowercase $host for QNX. --- src/configure.in | 4 ++++ 1 file changed, 4 insertions(+) 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" -- 2.40.0