From 64b654c718f48ca388fde33b91204f5c69c8bcc2 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 Ref: https://github.com/iojs/io.js/pull/1405 --- 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)