Changeset 1043 for trunk/qmake/generators/os2/gnumake.cpp
- Timestamp:
- Sep 1, 2011, 6:44:38 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/qmake/generators/os2/gnumake.cpp
r1000 r1043 310 310 // unnecessary duplication, in the absense of symlinks on OS/2) 311 311 QString origSpec = var("QMAKESPEC_ORIGINAL"); 312 if (!origSpec.isEmpty()) 313 spec = fileFixify(QDir::cleanPath(QDir(spec).absoluteFilePath(origSpec))); 312 if (!origSpec.isEmpty()) { 313 // Note: Option::mkfile::qmakespec is asbolute, specdir() may be not 314 spec = QDir(Option::mkfile::qmakespec).absoluteFilePath(origSpec); 315 spec = fileFixify(QDir::cleanPath(spec)); 316 } 314 317 } 315 318 project->values("QMAKESPECDIR") = QStringList(spec);
Note:
See TracChangeset
for help on using the changeset viewer.