diff options
author | Rob Pike <r@golang.org> | 2009-07-15 21:28:45 -0700 |
---|---|---|
committer | Rob Pike <r@golang.org> | 2009-07-15 21:28:45 -0700 |
commit | dcfaf795250893b26b18f3796d9f4ac1ed6cd08e (patch) | |
tree | 53b3f160960fc9a05274ce15e37eb875fdec6e42 /src | |
parent | 7589fea25f589d629cab023c0c32021bc39ed4c1 (diff) | |
download | golang-dcfaf795250893b26b18f3796d9f4ac1ed6cd08e.tar.gz |
add rpc to the build
R=rsc
DELTA=3 (3 added, 0 deleted, 0 changed)
OCL=31693
CL=31714
Diffstat (limited to 'src')
-rw-r--r-- | src/pkg/Make.deps | 1 | ||||
-rw-r--r-- | src/pkg/Makefile | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/pkg/Make.deps b/src/pkg/Make.deps index 532ede146..b58d2cc5f 100644 --- a/src/pkg/Make.deps +++ b/src/pkg/Make.deps @@ -41,6 +41,7 @@ path.install: strings.install rand.install: reflect.install: runtime.install strconv.install strings.install regexp.install: bytes.install container/vector.install io.install os.install runtime.install utf8.install +rpc.install: bufio.install gob.install http.install io.install log.install net.install os.install reflect.install strconv.install strings.install sync.install time.install unicode.install utf8.install runtime.install: sort.install: strconv.install: bytes.install math.install os.install utf8.install diff --git a/src/pkg/Makefile b/src/pkg/Makefile index c007511e6..c29c0aea7 100644 --- a/src/pkg/Makefile +++ b/src/pkg/Makefile @@ -55,6 +55,7 @@ DIRS=\ rand\ reflect\ regexp\ + rpc\ runtime\ sort\ strconv\ @@ -106,6 +107,7 @@ TEST=\ path\ reflect\ regexp\ + rpc\ sort\ strconv\ strings\ |