From 175de8865fe5d3edffd14324d7a832c6c144abf0 Mon Sep 17 00:00:00 2001 From: stanley lieber Date: Mon, 23 May 2011 21:32:09 +0000 Subject: pkg(1): update man page --- sys/man/1/pkg | 11 +++++++++++ 1 file changed, 11 insertions(+) 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 @@ -53,6 +55,15 @@ Remove the package .I name 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 -- cgit v1.2.3 From 576e0eb8cf1320ca8f05200195312ce6f19bd95f Mon Sep 17 00:00:00 2001 From: stanley lieber Date: Tue, 24 May 2011 02:42:34 +0000 Subject: cpu(1): fix man page --- sys/man/1/cpu | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sys/man/1/cpu b/sys/man/1/cpu index e408683bc..1ee79b02b 100644 --- a/sys/man/1/cpu +++ b/sys/man/1/cpu @@ -197,8 +197,8 @@ 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. +It is recommended to use the +.B -P +option to restrict the namespace that is exported +to the remote system. + -- cgit v1.2.3 From d4f56efb04e95b24e8855d77a0a3bc280effd2ea Mon Sep 17 00:00:00 2001 From: stanley lieber Date: Tue, 24 May 2011 03:06:10 +0000 Subject: cpu(1): update in light of irc heckling --- sys/man/1/cpu | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/sys/man/1/cpu b/sys/man/1/cpu index 1ee79b02b..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 -It is recommended to use the +By default, the entire namespace of the local system is +exported to the remote system. Use of the .B -P -option to restrict the namespace that is exported -to the remote system. - +option in conjunction with a customized patternfile can +limit this exposure, but also limits the usefulness of +.B /mnt/term. -- cgit v1.2.3 From 5f7f366e73c31f7c525fdc12753e66e2ae95f485 Mon Sep 17 00:00:00 2001 From: aiju Date: Wed, 25 May 2011 10:14:30 +0000 Subject: fixed issue #47 --- sys/src/cmd/cc/com64.c | 2 ++ 1 file changed, 2 insertions(+) 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; -- cgit v1.2.3