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
This commit is contained in:
robk-tahoe 2008-02-26 18:20:10 -07:00
parent 9063eebf64
commit 360c9d485c

View File

@ -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: