home *** CD-ROM | disk | FTP | other *** search
- Xref: sparky comp.os.linux:21227 gnu.gcc.bug:3032
- Posted-Date: Sun, 20 Dec 1992 23:51:10 GMT
- Newsgroups: comp.os.linux,gnu.gcc.bug
- From: bray@wcuvax1.wcu.edu (Jim Bray)
- Subject: Made gcc-2.3.2 on SLS-Linux of 12/03, what I had to do
- Message-ID: <1992Dec20.235110.20984@ncsu.edu>
- Originator: dbt@adm.csc.ncsu.edu
- Organization: wcuvax1.wcu.edu (CS Dept., Western Carolina University)
- Date: Sun, 20 Dec 1992 23:51:10 GMT
- Apparently-To: gnu-gcc-bug@mcnc.org
- Distribution: world
- Approved: info-gnu@prep.ai.mit.edu
- Path: sparky!uunet!stanford.edu!snorkelwacker.mit.edu!ai-lab!prep.ai.mit.edu!gnulists
- Followup-To: comp.os.linux,gnu.gcc.bug
- Lines: 41
-
- gcc-2.3.2/install.sh didn't work for me, complained about cp not
- getting args, so I changed configure as follows:
-
-
- First, /usr/bin/install on my system works fine. Also, gcc is the one
- and only cc on this system, and the SLS version apparently was made
- with this prefix, so I did the same. I had to make a symlink to fake
- /usr/local/gcc-lib: I suspect this will go away when I remake from
- scratch.
-
- 382,383c382
- < broken_install=no
- < prefix=/usr
- ---
- > broken_install=yes
-
- But then this doesn't really look at the value of broken_install, so
- I changed it to a case statement:
- 1206,1210c1205,1207
- < #if [ x$host_broken_install = x ]
- < #then true
- < #else
- < case $host_broken_install in
- < yes)
- ---
- > if [ x$host_broken_install = x ]
- > then true
- > else
- 1216,1217c1213
- < #fi
- < esac
- ---
- > fi
-
- I have just made linux 0.99 with it, so it is working fairly well.
-
- --Jim Bray (bray@wcuvax1.wcu.edu)
-
- (Please Support the League for Programming Freedom, and Boycott ATT
- because of their legal intimidation of BSDI, UCB, and CMU)
-
-