cd qt5
git checkout release
git submodule update
git submodule foreach 'git clean -dxf' // this doesn't work properly
git submodule foreach 'git reset --hard'
git submodule foreach 'git checkout release ||:'
git submodule foreach 'git pull --rebase ||:'
./configure -developer-build -confirm-license -opensource -no-xcb -nomake 
examples -nomake tests
make module-qtbase-qmake_all
make module-qtbase

I get compilation errors. i.e. it can't find several .h files in angle brackets 
e.g. <QList.h>

To fix it, I have to do this:
cd qtbase
git clean -dxf
make

Is there something wrong with git submodule foreach 'git clean -dxf'  ?

martin

_______________________________________________
Development mailing list
[email protected]
http://lists.qt-project.org/mailman/listinfo/development

Reply via email to