home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / gnu / utils / bug / 2001 < prev    next >
Encoding:
Text File  |  1992-11-08  |  1.0 KB  |  33 lines

  1. Newsgroups: gnu.utils.bug
  2. Path: sparky!uunet!charon.amdahl.com!pacbell.com!sgiblab!sdd.hp.com!zaphod.mps.ohio-state.edu!cis.ohio-state.edu!cygnus.com!bothner
  3. From: bothner@cygnus.com
  4. Subject: Re: Install binutils 2.0
  5. Message-ID: <9211062015.AA28465@cygnus.com>
  6. Sender: gnulists@ai.mit.edu
  7. Organization: GNUs Not Usenet
  8. References: <1992Nov5.220031.1286@spectrum.xerox.com>
  9. Distribution: gnu
  10. Date: Fri, 6 Nov 1992 04:15:34 GMT
  11. Approved: bug-gnu-utils@prep.ai.mit.edu
  12. Lines: 19
  13.  
  14. > On binutils 2.0, (on sunos 4.1.2), in opcodes there is a rule under
  15. > install:
  16. >         $(INSTALL_DATA) libbfd.a $(libdir)/libbfd.a
  17. >         $(RANLIB) $(libdir)/libbfd.a
  18. >
  19. > Shouldn't this be libopcodes?
  20.  
  21. Yes.  The current opcodes/Makefile.in has:
  22.  
  23. install:
  24.     -parent=`echo $(libdir)|sed -e 's@/[^/]*$$@@'`; \
  25.     if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
  26.     -if [ -d $(libdir) ] ; then true ; else mkdir $(libdir) ; fi
  27.     $(INSTALL_DATA) $(TARGETLIB) $(libdir)/libopcodes.a
  28.     $(RANLIB) $(libdir)/libopcodes.a
  29.  
  30.     --Per Bothner
  31. Cygnus Support     bothner@cygnus.com
  32.  
  33.