aboutsummaryrefslogtreecommitdiffstats
path: root/community/go-bindata/go-remove-runtime.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/go-bindata/go-remove-runtime.patch')
-rw-r--r--community/go-bindata/go-remove-runtime.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/community/go-bindata/go-remove-runtime.patch b/community/go-bindata/go-remove-runtime.patch
new file mode 100644
index 0000000000..4cb0349f72
--- /dev/null
+++ b/community/go-bindata/go-remove-runtime.patch
@@ -0,0 +1,17 @@
+--- ./go-bindata/version.go.orig
++++ ./go-bindata/version.go
+@@ -6,7 +6,6 @@
+
+ import (
+ "fmt"
+- "runtime"
+ )
+
+ const (
+@@ -27,5 +26,5 @@
+ }
+
+ return fmt.Sprintf("%s %d.%d.%s (Go runtime %s).\nCopyright (c) 2010-2013, Jim Teeuwen.",
+- AppName, AppVersionMajor, AppVersionMinor, AppVersionRev, runtime.Version())
++ AppName, AppVersionMajor, AppVersionMinor, AppVersionRev, "1.7.0")
+ }