]> Cypherpunks repositories - gostls13.git/commitdiff
netchan: move to old/netchan
authorRob Pike <r@golang.org>
Wed, 12 Oct 2011 18:46:50 +0000 (11:46 -0700)
committerRob Pike <r@golang.org>
Wed, 12 Oct 2011 18:46:50 +0000 (11:46 -0700)
Part of Go version 1 rearrangement.
No gofix, since the new name is not in Go 1.

R=golang-dev, gri
CC=golang-dev
https://golang.org/cl/5245055

src/pkg/Makefile
src/pkg/old/netchan/Makefile [moved from src/pkg/netchan/Makefile with 74% similarity]
src/pkg/old/netchan/common.go [moved from src/pkg/netchan/common.go with 100% similarity]
src/pkg/old/netchan/export.go [moved from src/pkg/netchan/export.go with 100% similarity]
src/pkg/old/netchan/import.go [moved from src/pkg/netchan/import.go with 100% similarity]
src/pkg/old/netchan/netchan_test.go [moved from src/pkg/netchan/netchan_test.go with 100% similarity]

index dafc2048d9bfe67e187cc08855d9737790df2a31..79f9882d081e3957f86943d25b892b62f73cc2fe 100644 (file)
@@ -130,7 +130,7 @@ DIRS=\
        net\
        net/dict\
        net/textproto\
-       netchan\
+       old/netchan\
        old/regexp\
        old/template\
        os\
similarity index 74%
rename from src/pkg/netchan/Makefile
rename to src/pkg/old/netchan/Makefile
index 9b9fdcf59f3f767b2d69c932b54350b0ecbaeccd..c8f41252526f7c4accd9aca6502623b83fa2aba3 100644 (file)
@@ -2,12 +2,12 @@
 # Use of this source code is governed by a BSD-style
 # license that can be found in the LICENSE file.
 
-include ../../Make.inc
+include ../../../Make.inc
 
-TARG=netchan
+TARG=old/netchan
 GOFILES=\
        common.go\
        export.go\
        import.go\
 
-include ../../Make.pkg
+include ../../../Make.pkg