We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a554a0 commit 04c78e2Copy full SHA for 04c78e2
src/configure
@@ -701,7 +701,7 @@ else
701
702
703
# lowercase $host
704
-host="`echo $host | tr 'A-Z' 'a-z'`"
+host="`echo $host | tr '[A-Z]' '[a-z]'`"
705
706
# First, try for a template exactly matching $host
707
if test -f "template/$host"
@@ -729,7 +729,7 @@ else
729
then TEMPLATE="$GUESS"
730
else
731
# Last chance ... maybe uname -s will match an entry.
732
- TEMPLATE=`uname -s | tr A-Z a-z`
+ TEMPLATE=`uname -s | tr '[A-Z]' '[a-z]'`
733
fi
734
735
0 commit comments