summaryrefslogtreecommitdiff
path: root/tool/m4/ruby_rm_recursive.m4
blob: e2c8f66ccc05c302c4b3ce80db397ba907d1e38a (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], [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