Skip to content

Commit

Permalink
* config.guess: fixed for Linux/PPC.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2775 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
eban committed Sep 1, 2002
1 parent e161877 commit 4c3dc77
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Sun Sep 1 15:54:33 2002 WATANABE Hirofumi <[email protected]>

* config.guess: fixed for Linux/PPC.

Fri Aug 30 22:45:16 2002 Akinori MUSHA <[email protected]>

* lib/set.rb: Added.
Expand Down
4 changes: 2 additions & 2 deletions config.guess
Original file line number Diff line number Diff line change
Expand Up @@ -826,10 +826,10 @@ EOF
$CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null
if test "$?" = 0 ; then
./$dummy | grep 1\.99 > /dev/null
if test "$?" = 0 ; then LIBC="libc1" ; fi
if test "$?" = 0 ; then LIBC="-libc1" ; fi
fi
rm -f $dummy.c $dummy
echo powerpc-unknown-linux-${LIBC}
echo powerpc-unknown-linux${LIBC}
exit 0 ;;
alpha:Linux:*:*)
cat <<EOF >$dummy.s
Expand Down

0 comments on commit 4c3dc77

Please sign in to comment.