summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy J Fontaine <tjfontaine@gmail.com>2013-07-09 13:48:24 -0700
committerTimothy J Fontaine <tjfontaine@gmail.com>2013-07-09 13:50:45 -0700
commit5b6464f461fc20c6cc6d061232eaefac7d14d3b8 (patch)
tree0fd551de3edfd99d25e3a509e2deeb282eaa994d
parent8bac8857f5c60e3af1a986f55912ce507b6135ba (diff)
downloadnode-new-5b6464f461fc20c6cc6d061232eaefac7d14d3b8.tar.gz
build: use separate env vars for signing
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 78cebdb91e..01c689db53 100644
--- a/Makefile
+++ b/Makefile
@@ -277,7 +277,7 @@ $(PKG): release-only
rm -rf out/deps out/Release
$(PYTHON) ./configure --without-snapshot --dest-cpu=x64 --tag=$(TAG)
$(MAKE) install V=$(V) DESTDIR=$(PKGDIR)
- SIGN="$(SIGN)" PKGDIR="$(PKGDIR)" bash tools/osx-codesign.sh
+ SIGN="$(APP_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 \
@@ -288,7 +288,7 @@ $(PKG): release-only
--id "org.nodejs.Node" \
--doc tools/osx-pkg.pmdoc \
--out $(PKG)
- SIGN="$(SIGN)" PKG="$(PKG)" bash tools/osx-productsign.sh
+ SIGN="$(INT_SIGN)" PKG="$(PKG)" bash tools/osx-productsign.sh
$(TARBALL): release-only node doc
git archive --format=tar --prefix=$(TARNAME)/ HEAD | tar xf -