Hi again :P

I found where is the problem, but I don't know how to fix it :P

When Qt4.4.3 generate a new xcode project or makefile, the UIC and MOC paths are incorrect (uuh!?)

Example of qt_preprocess.mak (in .xcodeproj):

################################################## ###########################
# Makefile for building: bin/xVideoServiceThief.app/Contents/MacOS/xVideoServiceThief
# Generated by qmake (2.01a) (Qt 4.4.3) on: jue oct 9 13:31:26 2008
# Project: xVideoServiceThief.pro
# Template: app
# Command: /usr/bin/qmake -spec /usr/local/Qt4.4/mkspecs/macx-xcode -macx -o xVideoServiceThief.xcodeproj/project.pbxproj xVideoServiceThief.pro
################################################## ###########################

MOC = /Users/xEsk/bin/moc
UIC = /Users/xEsk/bin/uic

...

parser_clean:
/Users/xEsk/bin/moc:
(cd /Users/xEsk/src/moc && $(MAKE))

...

build/moc-release/moc_addvideoimpl.cpp: build/ui/ui_addvideo.h \
src/videoinformation.h \
/Library/Frameworks/QtGui.framework/Versions/4/Headers/QtGui \
src/videoitem.h \
src/tools.h \
src/http.h \
/Library/Frameworks/QtNetwork.framework/Versions/4/Headers/QtNetwork \
src/forms/addvideoimpl.h \
../../../../bin/moc
/Users/xEsk/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__ src/forms/addvideoimpl.h -o build/moc-release/moc_addvideoimpl.cpp

...
The MOC and UIC do not exist in /Users/xEsk/bin/ (this bin directory do not exists), the real path of MOC and UIC apps are in "/usr/bin/"...

Well, my question now is, where Qt4.4 stores this information?? So I can change it manually! :P

Thanks and best regards,
Xesc