Commit 6a554a07 authored by Bruce Momjian's avatar Bruce Momjian

Clean up qnx template finding.

parent e2aef496
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment