diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-12-01 00:46:31 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-12-01 00:46:31 -0600 |
commit | 5db13b4934fa7784e5db83395fa0fad3780127cd (patch) | |
tree | 2574b498b6449806326eb6dbb2c99bbc2fc327a6 /qt3-tqt3/convert_qt_itself_qt3_batch4 | |
parent | b543280c8708e410f12af00f8c314f43ded482d9 (diff) | |
download | experimental-5db13b4934fa7784e5db83395fa0fad3780127cd.tar.gz experimental-5db13b4934fa7784e5db83395fa0fad3780127cd.zip |
Rename little-used libraries
Diffstat (limited to 'qt3-tqt3/convert_qt_itself_qt3_batch4')
-rwxr-xr-x | qt3-tqt3/convert_qt_itself_qt3_batch4 | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/qt3-tqt3/convert_qt_itself_qt3_batch4 b/qt3-tqt3/convert_qt_itself_qt3_batch4 index 1162789..e00245b 100755 --- a/qt3-tqt3/convert_qt_itself_qt3_batch4 +++ b/qt3-tqt3/convert_qt_itself_qt3_batch4 @@ -79,4 +79,16 @@ find ./ -type f -iname "*" -not -iwholename '*.git*' -exec sed -i 's/qt20fix/tqt find ./ -type f -iname "*" -not -iwholename '*.git*' -exec sed -i 's/ttqtconv2ui/tqtconv2ui/g' {} \; find ./ -type f -iname "*" -not -iwholename '*.git*' -exec sed -i 's/ttqvfb/tqvfb/g' {} \; +# Rename little-used libraries +find ./ -type f -iname "*" -not -iwholename '*.git*' -exec sed -i 's/-leditor/-ltqteditor/g' {} \; +find ./ -type f -iname "*" -not -iwholename '*.git*' -exec sed -i 's/libeditor/libtqteditor/g' {} \; +find ./ -type f -iname "*.pro" -not -iwholename '*.git*' -exec sed -i 's/TARGET\(.*\) editor/TARGET\1 tqteditor/g' {} \; +find ./ -type f -iname "*" -not -iwholename '*.git*' -exec sed -i 's/-ldesignercore/-ltqtdesignercore/g' {} \; +find ./ -type f -iname "*" -not -iwholename '*.git*' -exec sed -i 's/libdesignercore/libtqtdesignercore/g' {} \; +find ./ -type f -iname "*.pro" -not -iwholename '*.git*' -exec sed -i 's/TARGET\(.*\) designercore/TARGET\1 tqtdesignercore/g' {} \; +find ./ -type f -iname "*" -not -iwholename '*.git*' -exec sed -i 's/_designercore/_tqtdesignercore/g' {} \; +find ./ -type f -iname "*" -not -iwholename '*.git*' -exec sed -i 's/-lqassistantclient/-ltqassistantclient/g' {} \; +find ./ -type f -iname "*" -not -iwholename '*.git*' -exec sed -i 's/libqassistantclient/libtqassistantclient/g' {} \; +find ./ -type f -iname "*.pro" -not -iwholename '*.git*' -exec sed -i 's/TARGET\(.*\) qassistantclient/TARGET\1 tqassistantclient/g' {} \; + exit 0 |