1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/tool/m4/ruby_rm_recursive.m4
Nobuyoshi Nakada 3b7c05ef8d
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.
2020-12-13 01:16:57 +09:00

18 lines
454 B
Text

# -*- Autoconf -*-
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*], [
rm() {
rm_recursive=''
for arg do
AS_CASE("$arg",
[--*], [],
[-*r*], [break],
[conftest.*], [AS_IF([test -d "$arg"], [rm_recursive=-r; break])],
[])
done
command rm $rm_recursive "[$]@"
}
])])])dnl