diff options
Diffstat (limited to 'src/cmd/gopack')
-rw-r--r-- | src/cmd/gopack/ar.c | 2 | ||||
-rw-r--r-- | src/cmd/gopack/doc.go | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/cmd/gopack/ar.c b/src/cmd/gopack/ar.c index 702f104a6..a7e2c41af 100644 --- a/src/cmd/gopack/ar.c +++ b/src/cmd/gopack/ar.c @@ -109,7 +109,7 @@ typedef struct Hashchain /* constants and flags */ char *man = "mrxtdpq"; -char *opt = "uvnbailoS"; +char *opt = "uvnbailogS"; char artemp[] = "/tmp/vXXXXX"; char movtemp[] = "/tmp/v1XXXXX"; char tailtemp[] = "/tmp/v2XXXXX"; diff --git a/src/cmd/gopack/doc.go b/src/cmd/gopack/doc.go index 74c272fd2..08711e72e 100644 --- a/src/cmd/gopack/doc.go +++ b/src/cmd/gopack/doc.go @@ -12,10 +12,12 @@ It adds a special Go-specific section __.PKGDEF that collects all the Go type information from the files in the archive; that section is used by the compiler when importing the package during compilation. -Usage: gopack [uvnbailo][mrxtdpq] archive files ... +Usage: gopack [uvnbailogS][mrxtdpq] archive files ... The new option 'g' causes gopack to maintain the __.PKGDEF section as files are added to the archive. +The new option 'S' forces gopack to mark the archive as safe. + */ package documentation |