summaryrefslogtreecommitdiff
path: root/lang/go14/files/patch-doc__progs__run
diff options
context:
space:
mode:
authorDmitri Goutnik <dmgk@FreeBSD.org>2020-03-17 12:21:03 +0000
committerDmitri Goutnik <dmgk@FreeBSD.org>2020-03-17 12:21:03 +0000
commitf382c484787c3b8dded74a8a879c248742700b30 (patch)
treefe81970a5a575d1ebac00d60113f9bb6c1977712 /lang/go14/files/patch-doc__progs__run
parentlang/go: Update bootstrap to go1.14 final release (diff)
lang/go14: Remove port
lang/go was switched to the new bootstrap and it was the only consumer of lang/go14. Reviewed by: mikael, tobik Approved by: jlaffaye (maintainer timeout, 2 weeks) Differential Revision: https://reviews.freebsd.org/D23925
Diffstat (limited to 'lang/go14/files/patch-doc__progs__run')
-rw-r--r--lang/go14/files/patch-doc__progs__run11
1 files changed, 0 insertions, 11 deletions
diff --git a/lang/go14/files/patch-doc__progs__run b/lang/go14/files/patch-doc__progs__run
deleted file mode 100644
index ef23124b99e2..000000000000
--- a/lang/go14/files/patch-doc__progs__run
+++ /dev/null
@@ -1,11 +0,0 @@
---- ./doc/progs/run.orig 2013-06-09 23:20:14.695515753 +1000
-+++ ./doc/progs/run 2013-06-09 23:20:14.695515753 +1000
-@@ -87,7 +87,7 @@
- # Write to temporary file to avoid mingw bash bug.
- TMPFILE="${TMPDIR:-/tmp}/gotest3.$USER"
-
--function testit {
-+testit () {
- ./$1 >"$TMPFILE" 2>&1 || true
- x=$(echo $(cat "$TMPFILE")) # extra echo canonicalizes
- if ! echo "$x" | grep "$2" > /dev/null