From: robk-tahoe Date: Wed, 27 Feb 2008 01:20:10 +0000 (-0700) Subject: mac build: fix makefile bug X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=360c9d485c560413c876fc451b2ea6bab2233ebc;p=tahoe-lafs%2Ftahoe-lafs.git 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 --- 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: