This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[gccgo] Add missing dependency


I just committed this patch to add a missing dependency to
libgo/Makefile.am.  I haven't started any ChangeLog files yet--I will
as soon as licensing issues are sorted out.

Ian

Index: Makefile.in
===================================================================
--- Makefile.in	(revision 154084)
+++ Makefile.in	(working copy)
@@ -2643,7 +2643,7 @@ image/libimage.a: $(go_image_files)
 	$(BUILDARCHIVE)
 image/libimage.la: image/libimage.a
 
-io/libio.a: $(go_io_files) bytes.gox os.gox strings.gox sync.gox
+io/libio.a: $(go_io_files) bytes.gox os.gox sort.gox strings.gox sync.gox
 	$(BUILDARCHIVE)
 io/libio.la: io/libio.a
 
Index: Makefile.am
===================================================================
--- Makefile.am	(revision 154084)
+++ Makefile.am	(working copy)
@@ -916,7 +916,7 @@ image/libimage.a: $(go_image_files)
 	$(BUILDARCHIVE)
 image/libimage.la: image/libimage.a
 
-io/libio.a: $(go_io_files) bytes.gox os.gox strings.gox sync.gox
+io/libio.a: $(go_io_files) bytes.gox os.gox sort.gox strings.gox sync.gox
 	$(BUILDARCHIVE)
 io/libio.la: io/libio.a
 

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]