* configure.in (OBJDUMP, OBJCOPY):

*BSD's ports and MacPorts prefix GNU binutils with 'g'.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20838 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
yugui 2008-12-17 06:37:20 +00:00
parent 3d923f01bf
commit 5c0b21b7b9
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Wed Dec 17 15:35:39 2008 Yuki Sonoda (Yugui) <yugui@yugui.jp>
* configure.in (OBJDUMP, OBJCOPY):
*BSD's ports and MacPorts prefix GNU binutils with 'g'.
Wed Dec 17 11:39:39 2008 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
* test/bigdecimal/test_bigdecimal.rb (TestBigDecimal#test_hash):

View File

@ -217,8 +217,9 @@ AC_CHECK_TOOL(AS, as)
ASFLAGS=$ASFLAGS
AC_SUBST(ASFLAGS)
AC_CHECK_TOOL(OBJDUMP, objdump)
AC_CHECK_TOOL(OBJCOPY, objcopy)
# BSD's ports and MacPorts prefix GNU binutils with 'g'
AC_CHECK_TOOLS(OBJDUMP, [objdump, gobjdump])
AC_CHECK_TOOLS(OBJCOPY, [objcopy, gobjcopy])
case "$target_os" in
cygwin*|mingw*)