From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 34C301FC96 for ; Fri, 2 Dec 2016 21:14:59 +0000 (UTC) From: Eric Wong To: Subject: [PATCH] build: avoid network usage in "install-gem" target Date: Fri, 2 Dec 2016 21:14:59 +0000 Message-Id: <20161202211459.18666-1-e@80x24.org> List-Id: Installing a locally-built gem should not require network access in this developer-oriented makefile target. --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index 1e07a44..038bc25 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -48,7 +48,7 @@ doc: $(placeholders) gem: $(pkggem) install-gem: $(pkggem) - gem install $(CURDIR)/$< + gem install --local $(CURDIR)/$< $(pkggem): fix-perms .gem-manifest VERSION=$(VERSION) gem build $(pkg).gemspec -- EW