mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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:
parent
3d923f01bf
commit
5c0b21b7b9
2 changed files with 8 additions and 2 deletions
|
@ -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):
|
||||
|
|
|
@ -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*)
|
||||
|
|
Loading…
Reference in a new issue