projects
/
tahoe-lafs
/
tahoe-lafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9063eeb
)
mac build: fix makefile bug
author
robk-tahoe
<robk-tahoe@allmydata.com>
Wed, 27 Feb 2008 01:20:10 +0000
(18:20 -0700)
committer
robk-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
patch
|
blob
|
history
diff --git
a/mac/Makefile
b/mac/Makefile
index 6db61f4efe82f47ececbcf69d1b48205a868c9b9..f13153492feb6420bd19ba98ad02eb93f31f62b5 100644
(file)
--- 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: