mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Fixed RUBY_RM_RECURSIVE when autoconf met the required version
Before 9189cf5793
the result of
`m4_version_compare` was compared to -1, however the `$2` of
`m4_version_prereq` has different meaning and is expanded when
the required version met.
This commit is contained in:
parent
7ef5226520
commit
3b7c05ef8d
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
# -*- Autoconf -*-
|
||||
AC_DEFUN([RUBY_RM_RECURSIVE], [
|
||||
m4_version_prereq([2.70], [-1], [
|
||||
AC_DEFUN([RUBY_RM_RECURSIVE], [dnl
|
||||
m4_version_prereq([2.70], [], [dnl
|
||||
# suppress error messages, rm: cannot remove 'conftest.dSYM', from
|
||||
# AC_EGREP_CPP with CFLAGS=-g on Darwin.
|
||||
AS_CASE([$build_os], [darwin*], [
|
||||
|
|
Loading…
Reference in a new issue