summaryrefslogtreecommitdiff
path: root/tool/m4/ruby_rm_recursive.m4
blob: e33ba1d97af8710ed327d89b81077272e8f6a12b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- Autoconf -*-
AC_DEFUN([RUBY_RM_RECURSIVE], [
m4_version_prereq([2.70], [-1], [
# 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