Change History (9)
comment:1 by , 20 years ago
comment:2 by , 20 years ago
Cc: | added |
---|
comment:4 by , 20 years ago
Cc: | added |
---|
comment:5 by , 19 years ago
Status: | new → assigned |
---|
comment:6 by , 19 years ago
Milestone: | future → 6.1 |
---|---|
Owner: | changed from | to
Status: | assigned → new |
comment:7 by , 19 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Added instructions to use QTDIR=/usr for Method 1 Also fixed the sed for qmake, but limited it to mkspecs/linux-g++/qmake.conf
comment:8 by , 19 years ago
Keywords: | VERIFIED added |
---|
Note:
See TracTickets
for help on using tickets.
Thank you Igor, for posting it here. I hope you don't mind I will post some info from dublicated bug, I opened, here and close my bug as dublication of this bug to keep blfs bugzilla clean?
So here some additional comments(some changes/additions to my email): Confirmation: To confirm the bug just look in mkspecs/linux-g++/qmake.conf for the value of QMAKE_INCDIR_QT and you will understand easie what I'm talking about. Problem description: If QT compiled using instructions of 1st method of the BOOK, after QT will be compiled successfully, you will get errors compiling QT applications against QT using qmake. Also qmake will be unable to find uic and some other binaries. Symptoms, for example /bin/uic: No such file or directory. qmake will pass -I/include flag to gcc instead of -I/usr/include/qt Solution: To fix the problem the one should use this sed script (you can change only in linux-g++ dir, but it doesn't hurt if you will fix for other compilers): for i in linux-{cxx,ecc-64,g++,g++-64,icc,kcc,kylix,pgcc} do sed -i -e 's:${QTDIR}/include:&/qt:' \
done Also, QTDIR variable should be set to QTDIR=/usr.