From 68773550b229672758099a100fe9d3f37147e0f8 Mon Sep 17 00:00:00 2001
From: Slaven Rezic <[email protected]>
Date: Thu, 19 May 2016 09:11:00 +0200
Subject: [PATCH] compat for rm on Macs

This should fix https://github.com/ingydotnet/inline-c-pm/issues/54
---
t/pegex-parser.t | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/t/pegex-parser.t b/t/pegex-parser.t
index 28e15cf..ac976a6 100644
--- a/t/pegex-parser.t
+++ b/t/pegex-parser.t
@@ -6,8 +6,8 @@ plan tests => 2;
use IO::All;
use YAML::XS;

-BEGIN { system "rm _Inline* -fr" }
-END { system "rm _Inline* -fr" }
+BEGIN { system "rm -fr _Inline*" }
+END { system "rm -fr _Inline*" }

use Inline C => <<'END', USING => '::Parser::Pegex';
SV* JAxH(char* x) {
--
2.1.2