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]

Patch for missing "else true;" statements.



"else true;" statements are missing in Fortran Makefiles in two
places.


Here're two patches:


Thu Sep 10 14:55:44 1998  Kamil Iskra  <iskra@student.uci.agh.edu.pl>

	* Make-lang.in (f77.install-common): Add missing "else true;".

--- gcc/f/Make-lang.in.orig	Thu Sep 10 14:42:22 1998
+++ gcc/f/Make-lang.in	Wed Sep  9 15:13:56 1998
@@ -353,7 +353,7 @@ f77.install-common:
 	  echo '         (To turn off this warning, delete the file'; \
 	  echo '         f77-install-ok in the source or build directory.)'; \
 	  echo ''; \
-	fi
+	else true; fi
 
 # $(INSTALL_DATA) might be a relative pathname, so we can't cd into srcdir
 # to do the install.  The sed rule was copied from stmp-int-hdrs.


Thu Sep 10 14:57:25 1998  Kamil Iskra  <iskra@student.uci.agh.edu.pl>

	* Makefile.in (install): Add missing "else true;".


--- libf2c/Makefile.in.orig	Thu Sep 10 14:43:26 1998
+++ libf2c/Makefile.in	Wed Sep  9 15:14:30 1998
@@ -155,7 +155,7 @@ install: all
 	  echo '         (To turn off this warning, delete the file'; \
 	  echo '         f2c-install-ok in the source or build directory.)'; \
 	  echo ''; \
-	fi
+	else true; fi
 
 install-strip:
 	$(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install

/ Kamil Iskra    AmigaOS  Linux/i386  Linux/m68k               \
| GeekGadgets GCC maintainer   UNIX system administrator       |
| iskra@student.uci.agh.edu.pl  kiskra@ernie.icslab.agh.edu.pl |
\ kamil@dwd.interkom.pl   http://student.uci.agh.edu.pl/~iskra /



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