Date: Sat, 2 Mar 2019 18:31:45 +0000 (UTC) From: Julien Laffaye <jlaffaye@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r494450 - head/lang/go Message-ID: <201903021831.x22IVjTD043349@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jlaffaye Date: Sat Mar 2 18:31:44 2019 New Revision: 494450 URL: https://svnweb.freebsd.org/changeset/ports/494450 Log: Fix shebang and simplify shebangfix PR: 236159 Submitted by: sunpoet Modified: head/lang/go/Makefile Modified: head/lang/go/Makefile ============================================================================== --- head/lang/go/Makefile Sat Mar 2 18:05:37 2019 (r494449) +++ head/lang/go/Makefile Sat Mar 2 18:31:44 2019 (r494450) @@ -3,6 +3,7 @@ PORTNAME= go PORTVERSION= 1.12 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= lang MASTER_SITES= https://golang.org/dl/ @@ -17,18 +18,13 @@ BUILD_DEPENDS= go14>=1.4:lang/go14 USES= shebangfix SHEBANG_LANG= sh perl -SHEBANG_FILES= src/*.bash \ - doc/articles/wiki/*.bash \ - lib/time/*.bash \ - misc/benchcmp \ +SHEBANG_FILES= misc/benchcmp \ misc/nacl/go_nacl_*_exec \ misc/wasm/go_js_wasm_exec \ - src/cmd/go/*.sh \ - src/cmd/vendor/github.com/google/pprof/internal/binutils/testdata/build_mac.sh \ - src/net/http/cgi/testdata/*.cgi \ - src/regexp/syntax/*.pl + src/net/http/cgi/testdata/test.cgi +SHEBANG_GLOB= *.bash *.pl *.sh -sh_OLD_CMD= "/usr/bin/env bash" +sh_OLD_CMD= /bin/bash "/usr/bin/env bash" sh_CMD= ${SH} WRKSRC= ${WRKDIR}/go
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903021831.x22IVjTD043349>