Date: Fri, 24 Aug 2018 06:30:43 +0000 (UTC) From: =?UTF-8?Q?Romain_Tarti=c3=a8re?= <romain@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r477937 - head/sysutils/rubygem-r10k Message-ID: <201808240630.w7O6Uhf9049386@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808240630.w7O6Uhf9049386>