mirror of https://github.com/nodejs/node.git
build: Add VARIATION variable to binary target
If the VARIATION variable is present, then make binary will produce archives named node-$(FULLVERSION)-$(PLATFORM)-$(ARCH)-$(VARIATION). PR-URL: https://github.com/nodejs/node/pull/4631 Reviewed-By: Johan Bergström <bugs@bergstroem.nu> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org>pull/4789/merge
parent
318ded2c4d
commit
bf1237921c
5
Makefile
5
Makefile
|
@ -294,7 +294,12 @@ endif
|
|||
|
||||
TARNAME=node-$(FULLVERSION)
|
||||
TARBALL=$(TARNAME).tar
|
||||
# Custom user-specified variation, use it directly
|
||||
ifdef VARIATION
|
||||
BINARYNAME=$(TARNAME)-$(PLATFORM)-$(ARCH)-$(VARIATION)
|
||||
else
|
||||
BINARYNAME=$(TARNAME)-$(PLATFORM)-$(ARCH)
|
||||
endif
|
||||
BINARYTAR=$(BINARYNAME).tar
|
||||
# OSX doesn't have xz installed by default, http://macpkg.sourceforge.net/
|
||||
XZ=$(shell which xz > /dev/null 2>&1; echo $$?)
|
||||
|
|
Loading…
Reference in New Issue