Changes between Version 5 and Version 6 of qt
- Timestamp:
- 09/28/2008 11:45:16 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
qt
v5 v6 10 10 }}} 11 11 12 13 == Problematic script in Method 1 == 14 15 the first line: 16 17 {{{ 18 sed -i '/QMAKE_RPATH/d' mkspecs/linux*/qmake.conf 19 }}} 20 21 22 is a bug. the * doesn't expand to proper directories. Change that line to 23 24 25 {{{ 26 for directory in `ls -d mkspecs/linux*`; do 27 sed -i '/QMAKE_RPATH/d' $directory/qmake.conf 28 done 29 30 }}} 31 12 32 [wiki:XLibraries Up][[br]] 13 33 [wiki:BlfsNotes Top]