mirror of
https://github.com/postgres/postgres.git
synced 2026-03-07 15:50:44 -05:00
autoconf
This commit is contained in:
parent
6a554a07b4
commit
04c78e2eb4
1 changed files with 2 additions and 2 deletions
4
src/configure
vendored
4
src/configure
vendored
|
|
@ -701,7 +701,7 @@ else
|
|||
|
||||
|
||||
# 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"
|
||||
|
|
@ -729,7 +729,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
|
||||
|
|
|
|||
Loading…
Reference in a new issue