From 360c9d485c560413c876fc451b2ea6bab2233ebc Mon Sep 17 00:00:00 2001
From: robk-tahoe <robk-tahoe@allmydata.com>
Date: Tue, 26 Feb 2008 18:20:10 -0700
Subject: [PATCH] mac build: fix makefile bug

blah $( foo )  is more explicit than blah ` foo ` in a bash-like context
unfortunately it doesn't translate very well to makefiles, for which $(
means something else entirely
---
 mac/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mac/Makefile b/mac/Makefile
index 6db61f4e..f1315349 100644
--- a/mac/Makefile
+++ b/mac/Makefile
@@ -6,7 +6,7 @@ all: build
 dist: build diskimage upload cleanup
 
 build:
-	rsync -avn $( sw_vers -productVersion | sed -e 's/^\(10\.[0-9]*\)\..*$/\1/' )/ ./
+	rsync -avn ` sw_vers -productVersion | sed -e 's/^\(10\.[0-9]*\)\..*$/\1/' `/ ./
 	python setup.py py2app --no-chdir
 
 diskimage:
-- 
2.45.2