1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-08 07:21:33 +03:00

FIx solaris template finding.

This commit is contained in:
Bruce Momjian 1997-08-01 03:49:22 +00:00
parent a67fd49091
commit da76711714
2 changed files with 2 additions and 2 deletions

2
src/configure vendored
View File

@ -641,7 +641,7 @@ starts 'checking host system type...'
************************************************************** **************************************************************
EOT EOT
TEMPLATE=generic TEMPLATE=generic
GUESS=`grep $host_os template/.similar 2>/dev/null` GUESS=`grep "$host_os=" template/.similar 2>/dev/null`
if test $GUESS if test $GUESS
then then
TEMPLATE=`echo $GUESS | sed 's/.*=//'` TEMPLATE=`echo $GUESS | sed 's/.*=//'`

View File

@ -79,7 +79,7 @@ starts 'checking host system type...'
************************************************************** **************************************************************
EOT EOT
TEMPLATE=generic TEMPLATE=generic
GUESS=`grep $host_os template/.similar 2>/dev/null` GUESS=`grep "$host_os=" template/.similar 2>/dev/null`
if test $GUESS if test $GUESS
then then
TEMPLATE=`echo $GUESS | sed 's/.*=//'` TEMPLATE=`echo $GUESS | sed 's/.*=//'`