diff options
author | Timothy J Fontaine <tjfontaine@gmail.com> | 2014-06-09 12:44:26 -0700 |
---|---|---|
committer | Timothy J Fontaine <tjfontaine@gmail.com> | 2014-06-09 12:44:26 -0700 |
commit | a69205346b09eb3fd21e9530a75868b92102e039 (patch) | |
tree | 64a2bd0125ce7a15b7cf78a68fb151041934fddf | |
parent | eeb08ca496c1401b295385d53ffa1f853133eeb6 (diff) | |
download | node-v0.8.27-release.tar.gz |
build: support individual signing keysv0.8.27v0.8.27-release
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -248,7 +248,7 @@ $(PKG): release-only 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 + 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 \ @@ -259,7 +259,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 - |