Version 6 (modified by 15 years ago) ( diff ) | ,
---|
Qt
which-2.16 is required to build qt otherwise you should edit the .configure script and hardcode the path to make (hard way)
Qt-3.3.8-UTF-8-fix.diff patch won't apply because it's dos formatted with (control)M (linefeed?)
==> yes, could use
sed -e "s/\r//g" ../Qt-3.3.8-UTF-8-fix.diff | patch -Np0
Problematic script in Method 1
the first line:
sed -i '/QMAKE_RPATH/d' mkspecs/linux*/qmake.conf
is a bug. the * doesn't expand to proper directories. Change that line to
for directory in `ls -d mkspecs/linux*`; do sed -i '/QMAKE_RPATH/d' $directory/qmake.conf done
Note:
See TracWiki
for help on using the wiki.