From 69f3e8c32d5e22fc379abbf60220b6fc3e3c8543 Mon Sep 17 00:00:00 2001
From: Daira Hopwood <daira@jacaranda.org>
Date: Mon, 13 Oct 2014 17:12:51 +0100
Subject: [PATCH] Fix sed command for OS X.

Signed-off-by: Daira Hopwood <daira@jacaranda.org>
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index cc3044cc..96d1b82d 100644
--- a/Makefile
+++ b/Makefile
@@ -36,7 +36,7 @@ build:
 build-osx-pkg:
 	$(PYTHON) setup.py build
 	find support -name allmydata-tahoe.egg-link -execdir sh -c "echo >> {}; echo /Applications/tahoe.app/src >> {}" \;
-	find support -name easy-install.pth -execdir sed -i 's|^.*/src$$|../../../../src|' '{}' \;
+	find support -name easy-install.pth -execdir sed --in-place= 's|^.*/src$$|../../../../src|' '{}' \;
 	touch .built
 
 # create component pkg
-- 
2.45.2