We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd95aeb commit 6122538Copy full SHA for 6122538
Makefile
@@ -515,7 +515,8 @@ $(PKG): release-only
515
--release-urlbase=$(RELEASE_URLBASE) \
516
$(CONFIG_FLAGS) $(BUILD_RELEASE_FLAGS)
517
$(MAKE) install V=$(V) DESTDIR=$(PKGDIR)
518
- SIGN="$(CODESIGN_CERT)" PKGDIR="$(PKGDIR)" bash tools/osx-codesign.sh
+ SIGN="$(CODESIGN_CERT)" PKGDIR="$(PKGDIR)/usr/local" bash \
519
+ tools/osx-codesign.sh
520
cat tools/osx-pkg.pmdoc/index.xml.tmpl \
521
| sed -E "s/\\{nodeversion\\}/$(FULLVERSION)/g" \
522
| sed -E "s/\\{npmversion\\}/$(NPMVERSION)/g" \
tools/osx-codesign.sh
@@ -8,4 +8,4 @@ if [ "X$SIGN" == "X" ]; then
8
exit 0
9
fi
10
11
-codesign -s "$SIGN" "$PKGDIR"/usr/local/bin/node
+codesign -s "$SIGN" "$PKGDIR"/bin/node
0 commit comments