I'm developing on two different machines at the moment. On one gcc maps to gcc 4.6 and there is a gcc3 for whomever needs a really old version of gcc. On the other machine gcc maps to a v3 gcc and there is a gcc4 command for invoking the newer compiler.
The problem should be obvious - I want a single makefile for both machines, which basically means defining CC depending on whether gcc4 can be found or not.
$(shell which gcc4)but that failed because checking for the return value was executed in different shells - seeing the solution now makes that obvious but back then it was just another failed attempt. – Voo Jan 29 at 22:19