From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS8972 188.138.9.0/24 X-Spam-Status: No, score=-1.1 required=3.0 tests=AWL,BAYES_20,RCVD_IN_XBL shortcircuit=no autolearn=no version=3.3.2 X-Original-To: rainbows-public@bogomips.org Received: from 80x24.org (atlantic480.us.unmetered.com [188.138.9.49]) by dcvr.yhbt.net (Postfix) with ESMTP id B936D1F6D4 for ; Mon, 14 Sep 2015 05:33:31 +0000 (UTC) From: Eric Wong To: rainbows-public@bogomips.org Subject: [PATCH 1/6] build: fix quoting issue with double parens Date: Mon, 14 Sep 2015 05:33:13 +0000 Message-Id: <20150914053318.12251-2-e@80x24.org> In-Reply-To: <20150914053318.12251-1-e@80x24.org> References: <20150914053318.12251-1-e@80x24.org> List-Id: Apparently GNU make parses that strangely and mangles it for the shell... --- t/GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/GNUmakefile b/t/GNUmakefile index c456877..97b1985 100644 --- a/t/GNUmakefile +++ b/t/GNUmakefile @@ -42,7 +42,7 @@ ifeq ($(RUBY_ENGINE),ruby) models += FiberSpawn models += FiberPool - RUBY_LE_2_1 := $(shell $(RUBY) -e 'puts((RUBY_VERSION.to_f <= 2.1).to_s))') + RUBY_LE_2_1 := $(shell $(RUBY) -e 'puts(RUBY_VERSION.to_f <= 2.1)') ifeq ($(RUBY_LE_2_1), true) models += Coolio models += CoolioThreadPool -- EW