Skip to content

Commit 2a8bea9

Browse files
committed
Configure OS cleanup.
1 parent 0856643 commit 2a8bea9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/configure

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -641,10 +641,10 @@ starts 'checking host system type...'
641641
**************************************************************
642642
EOT
643643
TEMPLATE=generic
644-
GUESS=`grep "$host_os" template/.similar 2>/dev/null`
644+
GUESS=`grep "$host" template/.similar 2>/dev/null`
645645
if test ! "$GUESS"
646-
then host_os_no_ver=`echo "$host_os" | sed 's/[0-9.]*$//'`
647-
GUESS=`grep "$host_os_no_ver" template/.similar 2>/dev/null`
646+
then host_no_ver=`echo "$host" | sed 's/[0-9.]*$//'`
647+
GUESS=`grep "$host_no_ver" template/.similar 2>/dev/null`
648648
fi
649649
if test "$GUESS"
650650
then

src/configure.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,10 @@ starts 'checking host system type...'
7979
**************************************************************
8080
EOT
8181
TEMPLATE=generic
82-
GUESS=`grep "$host_os" template/.similar 2>/dev/null`
82+
GUESS=`grep "$host" template/.similar 2>/dev/null`
8383
if test ! "$GUESS"
84-
then host_os_no_ver=`echo "$host_os" | sed 's/[[0-9.]]*$//'`
85-
GUESS=`grep "$host_os_no_ver" template/.similar 2>/dev/null`
84+
then host_no_ver=`echo "$host" | sed 's/[[0-9.]]*$//'`
85+
GUESS=`grep "$host_no_ver" template/.similar 2>/dev/null`
8686
fi
8787
if test "$GUESS"
8888
then

0 commit comments

Comments
 (0)