Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(125)

Issue 160061: code review 160061: add freebsd to the list of os'es. (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
15 years, 9 months ago by r
Modified:
15 years, 9 months ago
Reviewers:
rsc, Eric Rannaud
CC:
golang-dev
Visibility:
Public.

Description

add freebsd to the list of os'es. make the GOOS/GOARCH pair a table to avoid the confusion caused when it was of the form linux/386.

Patch Set 1 #

Patch Set 2 : code review 160061: add freebsd to the list of os'es. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+33 lines, -8 lines) Patch
M doc/install.html View 1 1 chunk +33 lines, -8 lines 0 comments Download

Messages

Total messages: 5
r
Hello rsc (cc: golang-dev@googlegroups.com), I'd like you to review the following change.
15 years, 9 months ago (2009-11-24 23:52:20 UTC) #1
rsc
LGTM but sort the table rows
15 years, 9 months ago (2009-11-24 23:57:03 UTC) #2
r
*** Submitted as http://code.google.com/p/go/source/detail?r=a50ca422003f *** add freebsd to the list of os'es. make the GOOS/GOARCH ...
15 years, 9 months ago (2009-11-25 00:00:21 UTC) #3
Eric Rannaud
On 2009/11/25 00:00:21, r wrote: > add freebsd to the list of os'es. > make ...
15 years, 9 months ago (2009-11-25 04:21:09 UTC) #4
r2
15 years, 9 months ago (2009-11-25 04:25:05 UTC) #5
thanks, got it.

-rob

On Nov 24, 2009, at 8:21 PM, eric.rannaud@gmail.com wrote:

> On 2009/11/25 00:00:21, r wrote:
>> add freebsd to the list of os'es.
>> make the GOOS/GOARCH pair a table to avoid the confusion caused when
> it was of
>> the form linux/386.
>
> You may want to include the following patch: the first change just
> reorder the list in alphabetical order, the second change adds freebsd
> to the help message.
>
>
> diff -r 2b13a45c7c91 src/make.bash
> --- a/src/make.bash     Tue Nov 24 17:34:08 2009 -0800
> +++ b/src/make.bash     Tue Nov 24 20:18:12 2009 -0800
> @@ -31,10 +31,10 @@
> esac
>
> case "$GOOS" in
> -darwin | linux | nacl | freebsd)
> +darwin | freebsd | linux | nacl)
>        ;;
> *)
> -       echo '$GOOS is set to <'$GOOS'>, must be darwin, linux, or  
> nacl'
> 1>&2
> +       echo '$GOOS is set to <'$GOOS'>, must be darwin, freebsd,  
> linux,
> or nacl' 1>&2
>        exit 1
> esac
>
>
>
> http://codereview.appspot.com/160061

Sign in to reply to this message.

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b