Changeset 953 for trunk/qmake/generators/os2/gnumake.cpp
- Timestamp:
- Aug 10, 2011, 5:20:40 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/qmake/generators/os2/gnumake.cpp
r934 r953 97 97 // it at runtime. 98 98 QString ret = path; 99 QString trimmed = path.trimmed();100 if (!trimmed.startsWith("$(") || !trimmed.endsWith(")")) {99 100 101 101 ret.remove('\"'); 102 102 ret.replace(' ', "\\ "); 103 // butwe still want to normalize slashes as this is what we do in103 // we still want to normalize slashes as this is what we do in 104 104 // other places (e.g. .cpp targets); this function will do it for 105 105 // QMAKE_EXTRA_TARGETS as well … … 107 107 if (!isDosLikeShell()) 108 108 ret.replace('\\', '/'); 109 } else {110 ret = escapeFileVars(ret);111 109 } 112 110 return ret;
Note:
See TracChangeset
for help on using the changeset viewer.