On Monday 19 May 2008 09:47, maged wrote: > It looks like a shell error. I simplfied the qmake generated Makefile to > compile a helloworld.cpp file, i still get the error. I use a freshly > installed 2008.05 OpenSolaris > > --------------- test Makefile --------------------------- > CC = $CC
That's superfluous and bogus. If CC is set in the environment, make will use the evironment value of CC whenever $(CC) is referenced in the makefile. And anyway, as written this is the same as CC = $(C)C which is why you're seeing problems. How are you building Qt? From Dude, or by yourself?
