]> Cypherpunks repositories - gostls13.git/commitdiff
os/inotify: move to exp/inotify
authorMikio Hara <mikioh.mikioh@gmail.com>
Wed, 19 Oct 2011 01:54:45 +0000 (10:54 +0900)
committerMikio Hara <mikioh.mikioh@gmail.com>
Wed, 19 Oct 2011 01:54:45 +0000 (10:54 +0900)
R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/5295044

src/pkg/Makefile
src/pkg/exp/inotify/Makefile [moved from src/pkg/os/inotify/Makefile with 94% similarity]
src/pkg/exp/inotify/inotify_linux.go [moved from src/pkg/os/inotify/inotify_linux.go with 100% similarity]
src/pkg/exp/inotify/inotify_linux_test.go [moved from src/pkg/os/inotify/inotify_linux_test.go with 100% similarity]

index 7fce462c36fe72e408e1cc3f0c4e6878ed150af0..e784b26333baf526c52d82c37ae4f5cc1838edb7 100644 (file)
@@ -184,7 +184,7 @@ DIRS=\
 
 ifeq ($(GOOS),linux)
 DIRS+=\
-       os/inotify\
+       exp/inotify\
 
 endif
 
similarity index 94%
rename from src/pkg/os/inotify/Makefile
rename to src/pkg/exp/inotify/Makefile
index 90e18da57c56c971ab4c3e98b56726834892e130..1e822fb8f0af164b2b27f66158e25e0010ca09bd 100644 (file)
@@ -4,7 +4,7 @@
 
 include ../../../Make.inc
 
-TARG=os/inotify
+TARG=exp/inotify
 
 GOFILES_linux=\
        inotify_linux.go\