From: Bodo Möller Date: Fri, 2 Jul 1999 13:38:17 +0000 (+0000) Subject: Don't use ...-oldgcc for egcs compiler. X-Git-Tag: OpenSSL_0_9_4~133 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e0371fe4dc65ec62861e0ef293305442c0d97269;p=oweals%2Fopenssl.git Don't use ...-oldgcc for egcs compiler. --- diff --git a/config b/config index af3ae9ae11..8a47ca102d 100755 --- a/config +++ b/config @@ -355,10 +355,16 @@ then GCCVERMAJOR="`echo $GCCVER | sed 's/.*version \([^.]*\).*/\1/`" GCCVERMINOR="`echo $GCCVER | sed 's/.*version[^.]*\.\([^.]*\).*/\1/`" echo "gcc version $GCCVERMAJOR.$GCCVERMINOR.x" - if [ $GCCVERMAJOR$GCCVERMINOR -lt 28 ] - then - OUT=solaris-usparc-oldgcc - fi + case "$GCCVERMAJOR" in + egcs*) + ;; + *) + if [ $GCCVERMAJOR$GCCVERMINOR -lt 28 ] + then + OUT=solaris-usparc-oldgcc + fi + ;; + esac fi case "$GUESSOS" in