]> Cypherpunks repositories - gostls13.git/commit
cmd/go: reject case-insensitive file name, import collisions
authorRuss Cox <rsc@golang.org>
Fri, 15 Feb 2013 19:39:39 +0000 (14:39 -0500)
committerRuss Cox <rsc@golang.org>
Fri, 15 Feb 2013 19:39:39 +0000 (14:39 -0500)
commit2d4164596f3bd798996732aaa01b95e70f91e8a8
tree9142d6fe98bdc2715fb973d4095cacb7adf3e522
parent61e02ee901e361586291087a986680ee98da6da0
cmd/go: reject case-insensitive file name, import collisions

To make sure that Go code will work when moved to a
system with a case-insensitive file system, like OS X or Windows,
reject any package built from files with names differing
only in case, and also any package built from imported
dependencies with names differing only in case.

Fixes #4773.

R=golang-dev, iant
CC=golang-dev
https://golang.org/cl/7314104
src/cmd/go/main.go
src/cmd/go/pkg.go
src/cmd/go/test.bash