This is the mail archive of the fortran@gcc.gnu.org mailing list for the GNU Fortran 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]

[gfortran] committed: obvious fix for fortran/Make-lang.in



(Sorry for posting this late, but my mail server was down and I only found out after committing the patch on May 15th)

After chasing down a weird bug for quite some time I figured out that it
had to be a not-rebuilt file. Solution: Make-lang.in accidentally
contained dependencies for "data.c" instead of "data.o". While I was at
it, I also removed a redundant dependency of trans-common.o.

- Tobi

2004-05-15 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de>

	* Make-lang.in (trans-common.o): Remove redundant dependency.
	(data.c): Replace object file name ...
	(data.o): ... by the correct one.

Index: Make-lang.in
===================================================================
RCS file: /cvs/gcc/gcc/gcc/fortran/Make-lang.in,v
retrieving revision 1.4
diff -u -p -r1.4 Make-lang.in
--- Make-lang.in        14 May 2004 13:00:04 -0000      1.4
+++ Make-lang.in        15 May 2004 16:59:30 -0000
@@ -295,6 +295,6 @@ fortran/trans-array.o: $(GFORTRAN_TRANS_
 fortran/trans-intrinsic.o: $(GFORTRAN_TRANS_DEPS)
fortran/mathbuiltins.def \
   gt-fortran-trans-intrinsic.h
 fortran/dependency.o: fortran/gfortran.h fortran/dependency.h
-fortran/trans-common.o: $(GFORTRAN_TRANS_DEPS) fortran/gfortran.h
-fortran/data.c: $(GFORTRAN_TRANS_DEPS)
+fortran/trans-common.o: $(GFORTRAN_TRANS_DEPS)
+fortran/data.o: $(GFORTRAN_TRANS_DEPS)





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