home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / gnu / gcc / bug / 2794 < prev    next >
Encoding:
Text File  |  1992-11-20  |  1.3 KB  |  52 lines

  1. Newsgroups: gnu.gcc.bug
  2. Path: sparky!uunet!cis.ohio-state.edu!smallworld.co.uk!Colin.DEan
  3. From: Colin.DEan@smallworld.co.uk (Colin Dean)
  4. Subject: Installation bug in gcc 2.3.1
  5. Message-ID: <9211201017.AA09701@chromium.Smallworld.co.uk>
  6. Sender: gnulists@ai.mit.edu
  7. Organization: GNUs Not Usenet
  8. Distribution: gnu
  9. Date: Fri, 20 Nov 1992 10:17:53 GMT
  10. Approved: bug-gcc@prep.ai.mit.edu
  11. Lines: 39
  12.  
  13. Author of this bug report
  14. -------------------------
  15.  
  16. Colin Dean,
  17. Smallworld Systems Limited,
  18. 13-15 Newmarket Road,
  19. Cambridge CB5 8EG,
  20. England.
  21.  
  22. Fax:   +44 223 300692
  23. Email: Colin.Dean@Smallworld.co.uk
  24.  
  25. 20th November 1992
  26.  
  27. Summary
  28. -------
  29.  
  30. gcc version 2.3.1, copied by ftp from /pub/gnu/gcc-2.3.1.tar.Z
  31. at prep.ai.mit.edu on 17th November 1992 at around 08:00 GMT.
  32.  
  33. Built on SPARCstation 2 running SunOS 5.0 (Solaris 2.0) in sub-directory
  34. sparc-sun-sunos5.0 using `../configure sparc-sun-sunos5.0'
  35.  
  36. The installation stage of the build fails because instead of copying
  37. from `cc1' to `/usr/local/lib/gcc-lib/sparc-sun-sunos5.0/2.3.1/cc1'
  38. it tries copying the latter to `cc1/cc1', and similarly for other
  39. files installed via the Solaris 2 `install' command.
  40.  
  41. Workaround
  42. ----------
  43.  
  44. Create an executable script called `install' containing
  45.  
  46.     #! /bin/sh
  47.     cp $2 $3
  48.  
  49. and have its directory in your PATH before the standard directories
  50. when doing `make install ...'.
  51.  
  52.