commit 5c1a8e1c1bca49158c6dd82faac7229dc97c5d89 Author: Sebastian Hahn sebastian@torproject.org Date: Wed Apr 18 03:21:03 2012 +0200
OSX: work around dist-osx-libraries target breakage
Vidalia's make dist-osx-libraries target is broken for some reason. We'll just call macdeployqt manually for now --- build-scripts/osx.mk | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/build-scripts/osx.mk b/build-scripts/osx.mk index 83e008a..493052e 100644 --- a/build-scripts/osx.mk +++ b/build-scripts/osx.mk @@ -249,7 +249,10 @@ directory-structure:
## Package up all the Vidalia and Tor pre-requisites ## Firefox and Pidgin are installed in their own targets -install-binaries: +install-binaries: + chmod 644 $(BUILT_DIR)/lib/libssl.* + chmod 644 $(BUILT_DIR)/lib/libcrypto.* + $(BUILT_DIR)/bin/macdeployqt $(VIDALIA) -no-plugins # Vidalia cp -R $(VIDALIA) $(APPDIR)/Vidalia.app cp $(TOR) $(APPDIR)
tor-commits@lists.torproject.org