diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-03-30 17:37:58 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-03-30 17:37:58 +0000 |
commit | b66b1df098bd93bed50c6134e7e576c7bc57e014 (patch) | |
tree | def0c7c15b569c06c5036c941c0648f87c247217 /libgo | |
parent | 5851b67cbacf4f87299248d4c397fad52e748520 (diff) | |
download | gcc-b66b1df098bd93bed50c6134e7e576c7bc57e014.tar.gz |
libgo/Makefile.am: Add missing dependencies for net/net.lo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@171737 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgo')
-rw-r--r-- | libgo/Makefile.am | 5 | ||||
-rw-r--r-- | libgo/Makefile.in | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/libgo/Makefile.am b/libgo/Makefile.am index 0545d7d8396..16adf00ee2b 100644 --- a/libgo/Makefile.am +++ b/libgo/Makefile.am @@ -1705,8 +1705,9 @@ mime/check: $(CHECK_DEPS) $(CHECK) .PHONY: mime/check -net/net.lo: $(go_net_files) bytes.gox fmt.gox io.gox os.gox reflect.gox \ - strconv.gox strings.gox sync.gox syscall.gox +net/net.lo: $(go_net_files) bytes.gox fmt.gox io.gox os.gox rand.gox \ + reflect.gox strconv.gox strings.gox sync.gox syscall.gox \ + time.gox $(BUILDPACKAGE) net/check: $(CHECK_DEPS) $(CHECK) diff --git a/libgo/Makefile.in b/libgo/Makefile.in index b7500666197..2b62587967c 100644 --- a/libgo/Makefile.in +++ b/libgo/Makefile.in @@ -4125,8 +4125,9 @@ mime/check: $(CHECK_DEPS) $(CHECK) .PHONY: mime/check -net/net.lo: $(go_net_files) bytes.gox fmt.gox io.gox os.gox reflect.gox \ - strconv.gox strings.gox sync.gox syscall.gox +net/net.lo: $(go_net_files) bytes.gox fmt.gox io.gox os.gox rand.gox \ + reflect.gox strconv.gox strings.gox sync.gox syscall.gox \ + time.gox $(BUILDPACKAGE) net/check: $(CHECK_DEPS) $(CHECK) |