From 37d82c85201351d8df424b8043d91c1dc32a0531 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Thu, 3 Nov 2011 14:18:06 -0700 Subject: 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 --- src/pkg/exec/Makefile | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 src/pkg/exec/Makefile (limited to 'src/pkg/exec/Makefile') 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 -- cgit v1.3