mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* configure.in (RUBY_DTRACE_POSTPROCESS): cmp -b is GNU extension.
darwin uses GNU cmp, and FreeBSD and Solaris are not. Note that accidentally equals to expected result. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50595 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4a17c5aa19
commit
d1a3f716e9
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
Thu May 21 20:27:07 2015 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* configure.in (RUBY_DTRACE_POSTPROCESS): cmp -b is GNU extension.
|
||||
darwin uses GNU cmp, and FreeBSD and Solaris are not.
|
||||
Note that accidentally equals to expected result.
|
||||
|
||||
Thu May 21 18:00:19 2015 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* iseq.c: constify.
|
||||
|
|
|
@ -649,7 +649,7 @@ _PROBES
|
|||
$DTRACE -G -s conftest_provider.d conftest.${ac_objext} 2>/dev/null &&
|
||||
:
|
||||
}; then
|
||||
if cmp -b conftest.o conftest.${ac_objext}.save; then
|
||||
if cmp -s conftest.o conftest.${ac_objext}.save; then
|
||||
rb_cv_prog_dtrace_g=yes
|
||||
else
|
||||
rb_cv_prog_dtrace_g=rebuild
|
||||
|
|
Loading…
Reference in a new issue