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/exec/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/exec/Makefile')
| -rw-r--r-- | src/pkg/exec/Makefile | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/src/pkg/exec/Makefile b/src/pkg/exec/Makefile deleted file mode 100644 index ba19d0e4d0..0000000000 --- a/src/pkg/exec/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 2009 The Go Authors. All rights reserved. -# Use of this source code is governed by a BSD-style -# license that can be found in the LICENSE file. - -include ../../Make.inc - -TARG=exec -GOFILES=\ - exec.go\ - -GOFILES_freebsd=\ - lp_unix.go\ - -GOFILES_darwin=\ - lp_unix.go\ - -GOFILES_linux=\ - lp_unix.go\ - -GOFILES_openbsd=\ - lp_unix.go\ - -GOFILES_windows=\ - lp_windows.go\ - -GOFILES_plan9=\ - lp_plan9.go\ - -GOFILES+=$(GOFILES_$(GOOS)) - -include ../../Make.pkg |
