> > $alias gcc="gcc-4.1" make > > -bash: alias: make: not found
[...] > I think that should have been: > # alias gcc="gcc-4.1" > # make Make doesn't use bash aliases. An exported environment variable might do it, but I believe this is the standard way to do this: make CC=gcc-4.1 HTH, --Pete -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

