Commit 35778aa4 authored by Russ Cox's avatar Russ Cox

cmd/go: final edits for add go list -cgo and -export

These got lost because I violated the cardinal rule of Gerrit
which is never click the Submit button in the web UI.

Change-Id: I8ccdfb5d8691960f244941036d33fb5a5a3f0c9a
Reviewed-on: https://go-review.googlesource.com/117015Reviewed-by: default avatarRuss Cox <rsc@golang.org>
parent 156bbe28
...@@ -579,7 +579,7 @@ ...@@ -579,7 +579,7 @@
// //
// Usage: // Usage:
// //
// go list [-cgo] [-deps] [-e] [-f format] [-json] [-list] [-test] [build flags] [packages] // go list [-cgo] [-deps] [-e] [-export] [-f format] [-json] [-list] [-test] [build flags] [packages]
// //
// List lists the packages named by the import paths, one per line. // List lists the packages named by the import paths, one per line.
// //
...@@ -706,9 +706,8 @@ ...@@ -706,9 +706,8 @@
// a non-nil Error field; other information may or may not be missing // a non-nil Error field; other information may or may not be missing
// (zeroed). // (zeroed).
// //
// The -export flag causes list to set the package's Export field to // The -export flag causes list to set the Export field to the name of a
// the name of a file containing up-to-date export information for // file containing up-to-date export information for the given package.
// the given package.
// //
// The -test flag causes list to report not only the named packages // The -test flag causes list to report not only the named packages
// but also their test binaries (for packages with tests), to convey to // but also their test binaries (for packages with tests), to convey to
......
...@@ -23,7 +23,7 @@ import ( ...@@ -23,7 +23,7 @@ import (
) )
var CmdList = &base.Command{ var CmdList = &base.Command{
UsageLine: "list [-cgo] [-deps] [-e] [-f format] [-json] [-list] [-test] [build flags] [packages]", UsageLine: "list [-cgo] [-deps] [-e] [-export] [-f format] [-json] [-list] [-test] [build flags] [packages]",
Short: "list packages", Short: "list packages",
Long: ` Long: `
List lists the packages named by the import paths, one per line. List lists the packages named by the import paths, one per line.
...@@ -151,9 +151,8 @@ printing. Erroneous packages will have a non-empty ImportPath and ...@@ -151,9 +151,8 @@ printing. Erroneous packages will have a non-empty ImportPath and
a non-nil Error field; other information may or may not be missing a non-nil Error field; other information may or may not be missing
(zeroed). (zeroed).
The -export flag causes list to set the package's Export field to The -export flag causes list to set the Export field to the name of a
the name of a file containing up-to-date export information for file containing up-to-date export information for the given package.
the given package.
The -test flag causes list to report not only the named packages The -test flag causes list to report not only the named packages
but also their test binaries (for packages with tests), to convey to but also their test binaries (for packages with tests), to convey to
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment