diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/f/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/f/Make-lang.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/f/ChangeLog b/gcc/f/ChangeLog index 002706f..edd0eeb 100644 --- a/gcc/f/ChangeLog +++ b/gcc/f/ChangeLog @@ -1,3 +1,7 @@ +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;". + 1998-09-07 Dave Love <d.love@dl.ac.uk> * ChangeLog.egcs: Deleted. Entries merged here. diff --git a/gcc/f/Make-lang.in b/gcc/f/Make-lang.in index 9ad88b2..a180760 100644 --- a/gcc/f/Make-lang.in +++ b/gcc/f/Make-lang.in @@ -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. |