]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
mac build: fix makefile bug
authorrobk-tahoe <robk-tahoe@allmydata.com>
Wed, 27 Feb 2008 01:20:10 +0000 (18:20 -0700)
committerrobk-tahoe <robk-tahoe@allmydata.com>
Wed, 27 Feb 2008 01:20:10 +0000 (18:20 -0700)
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

index 6db61f4efe82f47ececbcf69d1b48205a868c9b9..f13153492feb6420bd19ba98ad02eb93f31f62b5 100644 (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: