home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / comp / os / linux / 21227 next >
Encoding:
Internet Message Format  |  1992-12-21  |  1.6 KB

  1. Xref: sparky comp.os.linux:21227 gnu.gcc.bug:3032
  2. Posted-Date: Sun, 20 Dec 1992 23:51:10 GMT
  3. Newsgroups: comp.os.linux,gnu.gcc.bug
  4. From: bray@wcuvax1.wcu.edu (Jim Bray)
  5. Subject: Made gcc-2.3.2 on SLS-Linux of 12/03, what I had to do
  6. Message-ID: <1992Dec20.235110.20984@ncsu.edu>
  7. Originator: dbt@adm.csc.ncsu.edu
  8. Organization: wcuvax1.wcu.edu (CS Dept., Western Carolina University)
  9. Date: Sun, 20 Dec 1992 23:51:10 GMT
  10. Apparently-To: gnu-gcc-bug@mcnc.org
  11. Distribution: world
  12. Approved: info-gnu@prep.ai.mit.edu
  13. Path: sparky!uunet!stanford.edu!snorkelwacker.mit.edu!ai-lab!prep.ai.mit.edu!gnulists
  14. Followup-To: comp.os.linux,gnu.gcc.bug
  15. Lines: 41
  16.  
  17.   gcc-2.3.2/install.sh didn't work for me, complained about cp not
  18. getting args, so I changed configure as follows:
  19.  
  20.  
  21.  First, /usr/bin/install on my system works fine. Also, gcc is the one
  22. and only cc on this system, and the SLS version apparently was made
  23. with this prefix, so I did the same. I had to make a symlink to fake
  24. /usr/local/gcc-lib: I suspect this will go away when I remake from
  25. scratch.
  26.  
  27. 382,383c382
  28. <         broken_install=no 
  29. <         prefix=/usr
  30. ---
  31. >         broken_install=yes
  32.  
  33.   But then this doesn't really look at the value of broken_install, so
  34. I changed it to a case statement:
  35. 1206,1210c1205,1207
  36. < #if [ x$host_broken_install = x ]
  37. < #then true
  38. < #else
  39. < case $host_broken_install in
  40. < yes)
  41. ---
  42. > if [ x$host_broken_install = x ]
  43. > then true
  44. > else
  45. 1216,1217c1213
  46. < #fi
  47. < esac
  48. ---
  49. > fi
  50.  
  51.   I have just made linux 0.99 with it, so it is working fairly well.
  52.  
  53. --Jim Bray (bray@wcuvax1.wcu.edu)
  54.  
  55. (Please Support the League for Programming Freedom, and Boycott ATT
  56.  because of their legal intimidation of BSDI, UCB, and CMU)
  57.  
  58.