Changeset 292
- Timestamp:
- Nov 6, 2009, 3:03:15 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/qmake/generators/os2/gnumake.cpp
r247 r292 77 77 ret.replace(' ', "\\ "); 78 78 } else { 79 79 80 ret.replace(QRegExp("\""), ""); 80 81 ret.replace(QRegExp("[\\\\/]$"), ""); … … 276 277 void GNUMakefileGenerator::writeGNUParts(QTextStream &t) 277 278 { 278 t << "QMAKESPECDIR = " << quote << specdir() << quote << endl << endl; 279 t << "QMAKESPECDIR = " << escapeFilePath(specdir()) << endl; 280 281 QString ofile = escapeFilePath(Option::output.fileName()); 282 if(ofile.lastIndexOf(Option::dir_sep) != -1) 283 ofile = ofile.right(ofile.length() - ofile.lastIndexOf(Option::dir_sep) -1); 284 t << "MAKEFILE = " << ofile << endl << endl; 279 285 280 286 writeStandardParts(t);
Note:
See TracChangeset
for help on using the changeset viewer.