PDA

View Full Version : QT-4.1 problems with FC4



probine
12th February 2006, 13:03
I just installed FC4 and downloaded the free version of QT-4.1. The instructions say:
"type ./configure" adter decompresing the downloaded file.

I type: "./configure" as root and as user too, but the following message appears:

./configure: line 53: [: /home/santiago/program: binary operator expected
./configure: line 59: [: /home/santiago/program: binary operator expected
grep: /home/santiago/program: No such file or directory
grep: files/qt/src/corelib/global/qglobal.h: No such file or directory
Cannot process version from qglobal.h:
Cannot proceed.

What is the problem and how do I solve it ?

Codepoet
12th February 2006, 14:25
You could try:
bash ./configure
in the qt directory as a normal user. Only "make install" needs root.

Have you tried the .tar.gz - maybe there is a rpm?

jacek
12th February 2006, 16:38
Is "/home/santiago/program" a valid path? Or maybe it's only a part of it? If the latter is true (i.e. you have a directory with white spaces in its name), try renaming it.

dimitri
12th February 2006, 20:40
grep: /home/santiago/program: No such file or directory
grep: files/qt/src/corelib/global/qglobal.h: No such file or directory
It looks like the name of the directory is /home/santiago/program files. Try a more standard path - without spaces. Of course the configure script could be fixed to handle spaces, but that's really an uncommon case on Linux/Unix and it's not handled by most scripts.