This is the mail archive of the gcc@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]
Other format: [Raw text]

Re: [Part of] your Dec., 4th change to libf2c/Makefile.in.


I wrote:

> Alexandre Oliva wrote:

> > Then a patch to replace $(libsubdir)/$(MULTISUBDIR) with
> > $(libdir)$(MULTISUBDIR) is pre-approved.
> 
> OK, I'll try this on my Apple Titanium before installing (AFAIK this
> target is multilib'd).
> 
> Thanks for the comments.

OK, installed as the attached patch.

-- 
Toon Moene - mailto:toon@moene.indiv.nluug.nl - phoneto: +31 346 214290
Saturnushof 14, 3738 XG  Maartensdijk, The Netherlands
Maintainer, GNU Fortran 77: http://gcc.gnu.org/onlinedocs/g77_news.html
Join GNU Fortran 95: http://g95.sourceforge.net/ (under construction)
2002-01-18  Toon Moene  <toon@moene.indiv.nluug.nl>

	* Makefile.in: Install libg2c.{a|la|so} in $(libdir)$(MULTISUBDIR)
	instead of $(libsubdir)$(MULTISUBDIR).

*** Makefile.in.orig	Fri Jan  4 22:41:44 2002
--- Makefile.in	Fri Jan 18 00:26:43 2002
*************** $(LIBG2C): s-libi77 s-libf77 s-libu77 s-
*** 143,147 ****
  	$(LIBTOOL) --mode=link $(CC) -o $@ \
  	  -version-info $(VERSION_MAJOR):$(VERSION_MINOR):$(VERSION_SUB) \
! 	  -rpath $(libsubdir)/$(MULTISUBDIR) \
  	  -objectlist s-libe77 \
  	  -objectlist s-libf77 \
--- 143,147 ----
  	$(LIBTOOL) --mode=link $(CC) -o $@ \
  	  -version-info $(VERSION_MAJOR):$(VERSION_MINOR):$(VERSION_SUB) \
! 	  -rpath $(libdir)$(MULTISUBDIR) \
  	  -objectlist s-libe77 \
  	  -objectlist s-libf77 \
*************** check:
*** 205,209 ****
  
  install: all
! 	$(LIBTOOL) --mode=install $(INSTALL_DATA) $(LIBG2C) $(libsubdir)/$(MULTISUBDIR)
  	$(INSTALL_DATA) libfrtbegin.a $(libsubdir)/$(MULTISUBDIR)
  	$(RANLIB) $(libsubdir)/$(MULTISUBDIR)/libfrtbegin.a
--- 205,209 ----
  
  install: all
! 	$(LIBTOOL) --mode=install $(INSTALL) $(LIBG2C) $(libdir)$(MULTISUBDIR)
  	$(INSTALL_DATA) libfrtbegin.a $(libsubdir)/$(MULTISUBDIR)
  	$(RANLIB) $(libsubdir)/$(MULTISUBDIR)/libfrtbegin.a
*************** install-strip:
*** 225,229 ****
  
  uninstall:
! 	rm -f $(libsubdir)/$(MULTISUBDIR)/include/g2c.h $(libsubdir)/$(MULTISUBDIR)/$(LIBG2C_BASE).*
  	rm -f $(prefix)/lib/$(LIBG2C_BASE).so*
  	$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO="$@"
--- 225,229 ----
  
  uninstall:
! 	rm -f $(libsubdir)/$(MULTISUBDIR)/include/g2c.h $(libdir)$(MULTISUBDIR)/$(LIBG2C_BASE).*
  	rm -f $(prefix)/lib/$(LIBG2C_BASE).so*
  	$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO="$@"

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