Changeset 189 for trunk/qmake/generators/win32
- Timestamp:
- Sep 22, 2009, 2:10:57 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/qmake/generators/win32/winmakefile.cpp
r158 r189 489 489 const QString del_suffix = 490 490 Option::target_mode == Option::TARG_OS2_MODE ? 491 QString(" >nul 2>&1"): // reduce noise492 QString::null;491 QString(" >nul 2>&1"): // reduce noise 492 QString::null; 493 493 494 494 const int commandlineLimit = 495 495 Option::target_mode == Option::TARG_OS2_MODE ? 496 10 24: // OS/2 CMD.EXE limit496 10 497 497 2047; // NT limit, expanded 498 498 … … 784 784 targetdir += Option::dir_sep; 785 785 786 787 788 789 790 786 791 if(t == "target" && project->first("TEMPLATE") == "lib") { 787 792 if(project->isActiveConfig("create_prl") && !project->isActiveConfig("no_install_prl") && … … 795 800 if(!uninst.isEmpty()) 796 801 uninst.append("\n\t"); 797 uninst.append("-$(DEL_FILE) \"" + dst_prl + "\"" );802 uninst.append("-$(DEL_FILE) \"" + dst_prl + "\""); 798 803 } 799 804 if(project->isActiveConfig("shared") && !project->isActiveConfig("plugin")) { … … 807 812 if(!uninst.isEmpty()) 808 813 uninst.append("\n\t"); 809 uninst.append("-$(DEL_FILE) \"" + dst_targ + "\"" );814 uninst.append("-$(DEL_FILE) \"" + dst_targ + "\""); 810 815 } 811 816 } … … 819 824 if(!uninst.isEmpty()) 820 825 uninst.append("\n\t"); 821 uninst.append("-$(DEL_FILE) \"" + dst_targ + "\"" );826 uninst.append("-$(DEL_FILE) \"" + dst_targ + "\""); 822 827 } 823 828 return ret;
Note:
See TracChangeset
for help on using the changeset viewer.