Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2012-08-03 01:57:34 +0400
committerisaacs <i@izs.me>2012-08-03 01:57:34 +0400
commit2bee3aeee93a2de6232da873dfa7e33f53ce94a6 (patch)
treeecc27ec1745c933c3a469dc7728a5e2e205fd6d7 /Makefile
parent931537769360c3816975e96040bfb6d83ac1078b (diff)
parent9b86a4453f0c76f2707a75c0b2343aba33ec63bc (diff)
Merge branch 'v0.8.5-release' into v0.8
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 795b11a5208..869eafac9a1 100644
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,7 @@
BUILDTYPE ?= Release
PYTHON ?= python
DESTDIR ?=
+SIGN ?=
# Default to verbose builds.
# To do quiet/pretty builds, run `make V=` to set V to an empty string,
@@ -210,6 +211,7 @@ $(PKG):
rm -rf out/deps out/Release
./configure --prefix=$(PKGDIR)/usr/local --without-snapshot --dest-cpu=x64
$(MAKE) install V=$(V)
+ SIGN="$(SIGN)" PKGDIR="$(PKGDIR)" bash tools/osx-codesign.sh
lipo $(PKGDIR)/32/usr/local/bin/node \
$(PKGDIR)/usr/local/bin/node \
-output $(PKGDIR)/usr/local/bin/node-universal \
@@ -217,9 +219,10 @@ $(PKG):
mv $(PKGDIR)/usr/local/bin/node-universal $(PKGDIR)/usr/local/bin/node
rm -rf $(PKGDIR)/32
$(packagemaker) \
- --id "org.nodejs.NodeJS-$(VERSION)" \
+ --id "org.nodejs.Node" \
--doc tools/osx-pkg.pmdoc \
--out $(PKG)
+ SIGN="$(SIGN)" PKG="$(PKG)" bash tools/osx-productsign.sh
$(TARBALL): node doc
@if [ "$(shell git status --porcelain | egrep -v '^\?\? ')" = "" ]; then \