mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-03-23 04:05:15 +00:00
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:
parent
9063eebf64
commit
360c9d485c
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user