Commit 30286a36 by Craig Burley Committed by Jeff Law

Make-lang.in (f77.install-common): Don't install, and don't uninstall existing,…

Make-lang.in (f77.install-common): Don't install, and don't uninstall existing, Info files if f/g77.info doesn't exit.

        * Make-lang.in (f77.install-common): Don't install, and
        don't uninstall existing, Info files if f/g77.info
        doesn't exit.  (This is a somewhat modified version
        of an egcs patch on 1998-01-07 12:05:51 by Bruno Haible
        <bruno@linuix.mathematik.uni-karlsruhe.de>.

From-SVN: r18185
parent 66172faa
Fri Feb 20 10:11:20 1998 Craig Burley <burley@gnu.org>
* Make-lang.in (f77.install-common): Don't install, and
don't uninstall existing, Info files if f/g77.info
doesn't exit. (This is a somewhat modified version
of an egcs patch on 1998-01-07 12:05:51 by Bruno Haible
<bruno@linuix.mathematik.uni-karlsruhe.de>.
Sun Jan 11 02:14:47 1998 Craig Burley <burley@gnu.org> Sun Jan 11 02:14:47 1998 Craig Burley <burley@gnu.org>
Support FORMAT(I<1+2>) (constant variable-FORMAT Support FORMAT(I<1+2>) (constant variable-FORMAT
......
...@@ -331,12 +331,14 @@ f77.install-common: ...@@ -331,12 +331,14 @@ f77.install-common:
# $(INSTALL_DATA) might be a relative pathname, so we can't cd into srcdir # $(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. # to do the install. The sed rule was copied from stmp-int-hdrs.
f77.install-info: f77.info f77.install-info: f77.info
-rm -f $(infodir)/g77.info* if [ -f f/g77.info ] ; then \
for f in f/g77.info*; do \ rm -f $(infodir)/g77.info*; \
realfile=`echo $$f | sed -e 's|.*/\([^/]*\)$$|\1|'`; \ for f in f/g77.info*; do \
$(INSTALL_DATA) $$f $(infodir)/$$realfile; \ realfile=`echo $$f | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
done $(INSTALL_DATA) $$f $(infodir)/$$realfile; \
-chmod a-x $(infodir)/g77.info* done; \
chmod a-x $(infodir)/g77.info* \
fi
f77.install-man: $(srcdir)/f/g77.1 f77.install-man: $(srcdir)/f/g77.1
-if [ -f f771$(exeext) ] ; then \ -if [ -f f771$(exeext) ] ; then \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment