maged wrote: > > cd src/tools/moc/ && gmake -f Makefile > gmake[1]: Entering directory > `/export/home/maged/dev/qt-x11-commercial-src-4.4.0/src/tools/moc' > XX -c XXFLAGS -O2 -DQT_EDITION=QT_EDITION_DESKTOP -DQT_BOOTSTRAPPED -DQT_MOC > -DQT_NO_CODECS -DQT_LITE_UNICODE -DQT_NO_LIBRARY -DQT_NO_STL -DQT_NO_COMPRESS > -DQT_NO_DATASTREAM -DQT_NO_TEXTSTREAM -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES > -DQT_NO_THREAD -DQT_NO_REGEXP -DQT_NO_QOBJECT -DQT_NO_SYSTEMLOCALE > -DQT_NO_GEOM_VARIANT -DQT_NO_USING_NAMESPACE -D_LARGEFILE64_SOURCE > -D_LARGEFILE_SOURCE -I../../../mkspecs/solaris-cc -I. > -I../../corelib/arch/generic -I../../../include -I. -I../../../include/QtCore > -I. -I.uic/release-shared -I/usr/sfw/include -o release-shared/moc.o moc.cpp > gmake[1]: XX: Command not found
My guess is that the shell or make is taking variables (CXX and CXXFLAGS), which are used like $CXX and $CXXFLAGS, doing substitution on the $C part (with no C environment or make variable), leaving just XX and XXFLAGS. So, what shell are you using? And where is your make/gmake? I have /usr/ccs/bin/make and /usr/sfw/bin/gmake, and use /usr/bin/ksh, both combinations seem to work. A+ Paul -- Paul Floyd http://paulf.free.fr
