Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 6a554a0

Browse files
committed
Clean up qnx template finding.
1 parent e2aef49 commit 6a554a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/configure.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ AC_ARG_WITH(template,
9494
[
9595

9696
# lowercase $host
97-
host="`echo $host | tr 'A-Z' 'a-z'`"
97+
host="`echo $host | tr '[[A-Z]]' '[[a-z]]'`"
9898

9999
# First, try for a template exactly matching $host
100100
if test -f "template/$host"
@@ -122,7 +122,7 @@ else
122122
then TEMPLATE="$GUESS"
123123
else
124124
# Last chance ... maybe uname -s will match an entry.
125-
TEMPLATE=`uname -s | tr A-Z a-z`
125+
TEMPLATE=`uname -s | tr '[[A-Z]]' '[[a-z]]'`
126126
fi
127127
fi
128128
fi

0 commit comments

Comments
 (0)