From owner-svn-ports-head@freebsd.org Fri Aug 24 06:30:43 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C37241080F79; Fri, 24 Aug 2018 06:30:43 +0000 (UTC) (envelope-from romain@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7997179621; Fri, 24 Aug 2018 06:30:43 +0000 (UTC) (envelope-from romain@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5ABEF5752; Fri, 24 Aug 2018 06:30:43 +0000 (UTC) (envelope-from romain@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w7O6UhHT049387; Fri, 24 Aug 2018 06:30:43 GMT (envelope-from romain@FreeBSD.org) Received: (from romain@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7O6Uhf9049386; Fri, 24 Aug 2018 06:30:43 GMT (envelope-from romain@FreeBSD.org) Message-Id: <201808240630.w7O6Uhf9049386@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: romain set sender to romain@FreeBSD.org using -f From: =?UTF-8?Q?Romain_Tarti=c3=a8re?= Date: Fri, 24 Aug 2018 06:30:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r477937 - head/sysutils/rubygem-r10k X-SVN-Group: ports-head X-SVN-Commit-Author: romain X-SVN-Commit-Paths: head/sysutils/rubygem-r10k X-SVN-Commit-Revision: 477937 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2018 06:30:43 -0000 Author: romain Date: Fri Aug 24 06:30:42 2018 New Revision: 477937 URL: https://svnweb.freebsd.org/changeset/ports/477937 Log: Avoid using %% in Makefile. We can use ${GEM_LIB_DIR} here. Reported by: sunpoet Pointy hat to: romain With hat: puppet Modified: head/sysutils/rubygem-r10k/Makefile Modified: head/sysutils/rubygem-r10k/Makefile ============================================================================== --- head/sysutils/rubygem-r10k/Makefile Fri Aug 24 06:24:30 2018 (r477936) +++ head/sysutils/rubygem-r10k/Makefile Fri Aug 24 06:30:42 2018 (r477937) @@ -23,7 +23,7 @@ USE_RUBY= yes USES= gem shebangfix PLIST_FILES= bin/r10k \ - %%GEM_LIB_DIR%%/test + ${GEM_LIB_DIR}/test SHEBANG_FILES= integration/*/*.sh