- Timestamp:
- Aug 17, 2011, 5:24:24 PM (14 years ago)
- File:
- 
      - 1 edited
 
 - 
          
  trunk/qmake/generators/makefile.cpp (modified) (1 diff)
 
Legend:
- Unmodified
- Added
- Removed
- 
      trunk/qmake/generators/makefile.cppr992 r998 1221 1221 { 1222 1222 QString ret(root + path); 1223 if(path.length() > 2 && path[1] == ':') { //c:\foo 1224 if (Option::target_mode == Option::TARG_OS2_MODE) 1225 ret = root + path.mid(2); 1226 else 1227 ret = path.mid(0, 2) + root + path.mid(2); 1228 } 1223 if(path.length() > 2 && path[1] == ':') //c:\foo 1224 ret = QString(path.mid(0, 2) + root + path.mid(2)); 1229 1225 while(ret.endsWith("\\")) 1230 1226 ret = ret.left(ret.length()-1); 
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  
