diff options
author | Kamil Iskra <iskra@student.uci.agh.edu.pl> | 1998-09-13 06:19:15 +0200 |
---|---|---|
committer | Dave Love <fx@gcc.gnu.org> | 1998-09-13 04:19:15 +0000 |
commit | 50a029fdcc3bfd5e17e1435fa5eabec3caa788ab (patch) | |
tree | bb47558bc46a7ee59c87c6057cc18bec8b6102d1 /libf2c | |
parent | 8d1fb67716a89bbaf6ee506bdd17fc345cdc1fd1 (diff) | |
download | gcc-50a029fdcc3bfd5e17e1435fa5eabec3caa788ab.zip gcc-50a029fdcc3bfd5e17e1435fa5eabec3caa788ab.tar.gz gcc-50a029fdcc3bfd5e17e1435fa5eabec3caa788ab.tar.bz2 |
Makefile.in (install): Add missing "else true;".
Thu Sep 10 14:57:25 1998 Kamil Iskra <iskra@student.uci.agh.edu.pl>
* Makefile.in (install): Add missing "else true;".
From-SVN: r22401
Diffstat (limited to 'libf2c')
-rw-r--r-- | libf2c/ChangeLog | 4 | ||||
-rw-r--r-- | libf2c/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libf2c/ChangeLog b/libf2c/ChangeLog index 02b07fa..dec8b7d 100644 --- a/libf2c/ChangeLog +++ b/libf2c/ChangeLog @@ -1,3 +1,7 @@ +Thu Sep 10 14:57:25 1998 Kamil Iskra <iskra@student.uci.agh.edu.pl> + + * Makefile.in (install): Add missing "else true;". + 1998-09-09 Craig Burley <burley@gnu.org> * configure.in: Test $srcdir, not $subdir (probable typo). diff --git a/libf2c/Makefile.in b/libf2c/Makefile.in index ae23d61..ced3dd7 100644 --- a/libf2c/Makefile.in +++ b/libf2c/Makefile.in @@ -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 |