diff options
| author | Robert Griesemer <gri@golang.org> | 2008-11-19 15:16:20 -0800 |
|---|---|---|
| committer | Robert Griesemer <gri@golang.org> | 2008-11-19 15:16:20 -0800 |
| commit | bef9b1713a83f5d1722a2b01a73f2a6600fda43b (patch) | |
| tree | 7b81152f8a85e1e94819db1643e0ca2771907740 /src/lib/make.bash | |
| parent | 6d30efc77215d97d57330ab2daaac338db388a17 (diff) | |
| download | go-bef9b1713a83f5d1722a2b01a73f2a6600fda43b.tar.xz | |
- removed uses of vector in favor of array in a few places
- fixed make.bash
R=r
DELTA=21 (1 added, 3 deleted, 17 changed)
OCL=19624
CL=19629
Diffstat (limited to 'src/lib/make.bash')
| -rwxr-xr-x | src/lib/make.bash | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/lib/make.bash b/src/lib/make.bash index 825771c633..76ae0404e4 100755 --- a/src/lib/make.bash +++ b/src/lib/make.bash @@ -18,9 +18,7 @@ function builddirs() { for i do echo; echo; echo %%%% making lib/$i %%%%; echo - cd $i - make install - cd .. + (cd $i; make install) done } @@ -35,6 +33,7 @@ builddirs syscall\ math\ os\ strconv\ + container/array\ reflect\ buildfiles io.go @@ -54,4 +53,3 @@ builddirs net\ time\ http\ regexp\ - container/array\ |
