From fa91b18a4c69ad01b83cc73245cf681246d93b1d Mon Sep 17 00:00:00 2001 From: Rod Vagg Date: Tue, 14 Apr 2015 22:22:23 +1000 Subject: [PATCH] build: fix RELEASE check fixes broken 1.7.0 build, unreviewed quick patch Ref: https://github.com/iojs/io.js/pull/1405 PR-URL: https://github.com/iojs/io.js/pull/1421 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e93e817ffe0454..0227e794ef62cc 100644 --- a/Makefile +++ b/Makefile @@ -197,7 +197,7 @@ docclean: RAWVER=$(shell $(PYTHON) tools/getnodeversion.py) VERSION=v$(RAWVER) FULLVERSION=$(VERSION) -RELEASE=($shell sed -ne 's/#define NODE_VERSION_IS_RELEASE \([01]\)/\1/p' src/node_version.h) +RELEASE=$(shell sed -ne 's/#define NODE_VERSION_IS_RELEASE \([01]\)/\1/p' src/node_version.h) PLATFORM=$(shell uname | tr '[:upper:]' '[:lower:]') NPMVERSION=v$(shell cat deps/npm/package.json | grep '"version"' | sed 's/^[^:]*: "\([^"]*\)",.*/\1/') ifeq ($(findstring x86_64,$(shell uname -m)),x86_64)