Changeset 773 for trunk/qmake/generators/makefile.cpp
- Timestamp:
- Aug 3, 2010, 12:07:42 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/qmake/generators/makefile.cpp
r769 r773 1315 1315 QString cmd; 1316 1316 if (installConfigValues.contains("directory")) { 1317 cmd = QLatin1String(inst_prefix +"$(INSTALL_DIR)");1317 cmd = "$(INSTALL_DIR)"); 1318 1318 if (!dst_file.endsWith(Option::dir_sep)) 1319 1319 dst_file += Option::dir_sep; 1320 1320 dst_file += fi.fileName(); 1321 1321 } else if (installConfigValues.contains("executable")) { 1322 cmd = QLatin1String(inst_prefix +"$(INSTALL_PROGRAM)");1322 cmd = "$(INSTALL_PROGRAM)"); 1323 1323 } else if (installConfigValues.contains("data")) { 1324 cmd = QLatin1String(inst_prefix +"$(INSTALL_FILE)");1324 cmd = "$(INSTALL_FILE)"); 1325 1325 } else { 1326 1326 cmd = inst_prefix + QString(fi.isExecutable() ? "$(INSTALL_PROGRAM)" : "$(INSTALL_FILE)");
Note:
See TracChangeset
for help on using the changeset viewer.