diff options
author | Timothy J Fontaine <tjfontaine@gmail.com> | 2013-10-18 10:44:03 -0700 |
---|---|---|
committer | Timothy J Fontaine <tjfontaine@gmail.com> | 2013-10-18 10:44:03 -0700 |
commit | 6d391bbbe18217ce20c15c3da2bad71ef836922c (patch) | |
tree | 3744d5866224b441a5b7004aa91429ded0829e07 /Makefile | |
parent | 4421bebc36370b1949b8f4030736af25019555ea (diff) | |
download | node-new-6d391bbbe18217ce20c15c3da2bad71ef836922c.tar.gz |
fix pkg buildingv0.8.26v0.8.26-release
Diffstat (limited to 'Makefile')
-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 - |