diff options
| author | Rob Pike <r@golang.org> | 2011-11-03 14:18:06 -0700 |
|---|---|---|
| committer | Rob Pike <r@golang.org> | 2011-11-03 14:18:06 -0700 |
| commit | 37d82c85201351d8df424b8043d91c1dc32a0531 (patch) | |
| tree | f5a43e39e82db5ce563ff205e744f2b57a29fe2a /src/pkg/Makefile | |
| parent | eb1717e035e9c6b6690fd55b6396f99b40d26d3f (diff) | |
| download | go-37d82c85201351d8df424b8043d91c1dc32a0531.tar.xz | |
os,text,unicode: renamings
This is Go 1 package renaming CL #4.
This one merely moves the source; the import strings will be
changed after the next weekly release.
This one moves pieces into os, text, and unicode.
exec -> os/exec
scanner -> text/scanner
tabwriter -> text/tabwriter
template -> text/template
template/parse -> text/template/parse
utf16 -> unicode/utf16
utf8 -> unicode/utf8
This should be the last of the source-rearranging CLs.
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/5331066
Diffstat (limited to 'src/pkg/Makefile')
| -rw-r--r-- | src/pkg/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/pkg/Makefile b/src/pkg/Makefile index 691eda4a08..e9286441c2 100644 --- a/src/pkg/Makefile +++ b/src/pkg/Makefile @@ -77,7 +77,6 @@ DIRS=\ encoding/pem\ encoding/xml\ errors\ - exec\ exp/ebnf\ exp/ebnflint\ exp/gotype\ @@ -142,6 +141,7 @@ DIRS=\ old/regexp\ old/template\ os\ + os/exec\ os/signal\ os/user\ patch\ @@ -154,24 +154,24 @@ DIRS=\ runtime/cgo\ runtime/debug\ runtime/pprof\ - scanner\ sort\ strconv\ strings\ sync\ sync/atomic\ syscall\ - tabwriter\ - template\ - template/parse\ testing\ testing/iotest\ testing/quick\ testing/script\ + text/scanner\ + text/tabwriter\ + text/template\ + text/template/parse\ time\ unicode\ - utf16\ - utf8\ + unicode/utf16\ + unicode/utf8\ websocket\ ../cmd/cgo\ ../cmd/godoc\ |
