diff options
| author | Gustavo Niemeyer <gustavo@niemeyer.net> | 2011-03-06 17:33:23 -0500 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2011-03-06 17:33:23 -0500 |
| commit | 04ca4f824281bf0a17a5aaa5b1586978779b6200 (patch) | |
| tree | d5c4021a97c39e0e2019cdcb917da268daae149a /src/pkg/Makefile | |
| parent | ce65b7250805253367cce756e03cda7c7f77df43 (diff) | |
| download | go-04ca4f824281bf0a17a5aaa5b1586978779b6200.tar.xz | |
path/filepath: new OS-specific path support
The path package now contains only functions which
deal with slashed paths, sensible for any OS when dealing
with network paths or URLs. OS-specific functionality
has been moved into the new path/filepath package.
This also includes fixes for godoc, goinstall and other
packages which were mixing slashed and OS-specific paths.
R=rsc, gri, mattn, brainman
CC=golang-dev
https://golang.org/cl/4252044
Diffstat (limited to 'src/pkg/Makefile')
| -rw-r--r-- | src/pkg/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pkg/Makefile b/src/pkg/Makefile index 331bb68e5a..6e70690d1b 100644 --- a/src/pkg/Makefile +++ b/src/pkg/Makefile @@ -118,6 +118,7 @@ DIRS=\ os/signal\ patch\ path\ + path/filepath\ rand\ reflect\ regexp\ |
