From 0c74d867c5e5c008c7043e3549fb2b30b0d43506 Mon Sep 17 00:00:00 2001 From: Shenghou Ma Date: Mon, 12 Mar 2012 13:20:25 +1100 Subject: [PATCH] misc/dist: minimum target requirement is 10.6 for Darwin As we've dropped support for Mac OS X 10.5, I think the generated .pkg should reflect that decision. But this CL make it impossible to generate pkg on Mac OS X 10.6, at least for me. R=adg, bradfitz CC=golang-dev https://golang.org/cl/5798051 --- misc/dist/bindist.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/dist/bindist.go b/misc/dist/bindist.go index aa73f2f207..841aacaddf 100644 --- a/misc/dist/bindist.go +++ b/misc/dist/bindist.go @@ -203,7 +203,7 @@ func (b *Build) Do() error { "--id", "com.googlecode.go", "--title", "Go", "--version", "1.0", - "--target", "10.5") + "--target", "10.6") targs = append(targs, targ) case "windows": // Create ZIP file. -- 2.50.0