projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e2aef49
)
Clean up qnx template finding.
author
Bruce Momjian
Tue, 21 Dec 1999 16:55:38 +0000
(16:55 +0000)
committer
Bruce Momjian
Tue, 21 Dec 1999 16:55:38 +0000
(16:55 +0000)
src/configure.in
patch
|
blob
|
blame
|
history
diff --git
a/src/configure.in
b/src/configure.in
index 3e6e5fb8c13f452533bc5bb3262788bb88b723a7..c1eeaee0d9129736fc8826c7cc13f9731c583708 100644
(file)
--- a/
src/configure.in
+++ b/
src/configure.in
@@
-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