Path: utzoo!utgpu!water!watmath!clyde!burl!codas!mtune!mtgzz!avr From: avr@mtgzz.UUCP (XMRP50000[jcm]-a.v.reed) Newsgroups: comp.unix.questions Subject: Re: fpcc's name is not cc!! Summary: Make it a ksh alias Message-ID: <3616@mtgzz.UUCP> Date: 15 Feb 88 18:59:57 GMT References: <214@mccc.UUCP> Organization: AT&T, Middletown NJ Lines: 12 In article <214@mccc.UUCP>, pjh@mccc.UUCP (Peter J. Holsberg) writes: > > I have the floating point C compiler, fpcc, on my 3B2 (SVr3.0) but do > not have cc. I tried linking fpcc to ccso I can avoid editing every > makefile that comes down the pike, but the system says (when I invoke > cc) "name must end in fpcc". Is there Aa way around this? Thanks. # Yes, but only if your make recognizes $SH or $SHELL, and you have ksh: # Put the following in your $ENV file - SH=`whence ksh`;SHELL=$SH;export SH SHELL;alias -x cc=`whence fpcc` Adam Reed (mtgzz!avr)