Changeset 29 for trunk/qmake/generators/makefile.cpp
- Timestamp:
- Jun 12, 2009, 1:32:11 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/qmake/generators/makefile.cpp
r27 r29 100 100 ret += dir; 101 101 ret += " "; 102 if(is WindowsShell())102 if(isDosLikeShell()) 103 103 ret += "$(MKDIR)"; 104 104 else … … 125 125 } 126 126 bool ret = true; 127 #if def Q_OS_WIN127 #if defined(Q_OS_WIN) || defined(Q_OS_OS2) 128 128 bool driveExists = true; 129 129 if(!QDir::isRelativePath(path)) { … … 1191 1191 { 1192 1192 QString rm_dir_contents("-$(DEL_FILE)"); 1193 if (!is WindowsShell()) //ick1193 if (!isDosLikeShell()) //ick 1194 1194 rm_dir_contents = "-$(DEL_FILE) -r"; 1195 1195 … … 1342 1342 for(QStringList::ConstIterator pit = dirs.begin(); pit != dirs.end(); ++pit) { 1343 1343 QString tmp_dst = fileFixify((*pit), FileFixifyAbsolute, false); 1344 if (!is WindowsShell() && tmp_dst.right(1) != Option::dir_sep)1344 if (!isDosLikeShell() && tmp_dst.right(1) != Option::dir_sep) 1345 1345 tmp_dst += Option::dir_sep; 1346 1346 t << mkdir_p_asstring(filePrefixRoot(root, tmp_dst)) << "\n\t";
Note:
See TracChangeset
for help on using the changeset viewer.