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: X-Spam-Status: No, score=-3.4 required=3.0 tests=ALL_TRUSTED,BAYES_00, RP_MATCHES_RCVD shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: yahns-public@yhbt.net Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 70CE220275 for ; Tue, 2 Feb 2016 01:49:10 +0000 (UTC) From: Eric Wong To: yahns-public@yhbt.net Subject: [PATCH] build: install-gem forced to "--local" domain Date: Tue, 2 Feb 2016 01:49:10 +0000 Message-Id: <20160202014910.24132-1-e@80x24.org> List-Id: This avoids needless network traffic when installing the locally-built gem. --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index 99dcdc3..2cd9079 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -53,7 +53,7 @@ fix-perms: gem: $(pkggem) install-gem: $(pkggem) - gem install $(CURDIR)/$< + gem install --local $(CURDIR)/$< $(pkggem): .gem-manifest VERSION=$(VERSION) gem build $(pkg).gemspec -- EW