diff options
| -rw-r--r-- | sys/man/1/cpu | 11 | ||||
| -rw-r--r-- | sys/man/1/pkg | 11 | ||||
| -rw-r--r-- | sys/src/cmd/cc/com64.c | 2 |
3 files changed, 19 insertions, 5 deletions
diff --git a/sys/man/1/cpu b/sys/man/1/cpu index e408683bc..f7bad937b 100644 --- a/sys/man/1/cpu +++ b/sys/man/1/cpu @@ -197,8 +197,9 @@ Binds and mounts done after the terminal .B lib/profile is run are not reflected in the new name space. .PP -When using the -.B -a -option to `log in' as another user, be aware that -resources in the local name space will be made -available to that user. +By default, the entire namespace of the local system is +exported to the remote system. Use of the +.B -P +option in conjunction with a customized patternfile can +limit this exposure, but also limits the usefulness of +.B /mnt/term. diff --git a/sys/man/1/pkg b/sys/man/1/pkg index 9e75a92bc..3b5e3a84f 100644 --- a/sys/man/1/pkg +++ b/sys/man/1/pkg @@ -30,6 +30,8 @@ packages. .I Pkg/create Create builds a new package .IR name , +whose source is found in directory +.IR name , then packs it into a .IR bzip2 (1) compressed @@ -54,6 +56,15 @@ Remove the package from the local system. .SH EXAMPLES .LP +Create the package +.B links-variable-2011.05.23 +.sp 1 +.EX +% cd /sys/src +% pkg/create links-variable-2011.05.23 +.EE + +.LP Install the .B Go programming language. diff --git a/sys/src/cmd/cc/com64.c b/sys/src/cmd/cc/com64.c index e1f7c8a3f..53c3c9fca 100644 --- a/sys/src/cmd/cc/com64.c +++ b/sys/src/cmd/cc/com64.c @@ -274,6 +274,8 @@ com64(Node *n) case ORETURN: case OAS: case OIND: + case OCOMMA: + case OLIST: return 1; case OADD: a = nodaddv; |
