respect copy_dir_files with manually flagged directories as well
otherwise the second installation on unix would be bogus. Change-Id: I162533ee262c6820e7e2d4710b5342cafecd9d59 Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>bb10
parent
37cc4a6499
commit
c292f1dc8a
|
|
@ -1270,9 +1270,11 @@ MakefileGenerator::writeInstalls(QTextStream &t, const QString &installs, bool n
|
|||
QString cmd;
|
||||
if (installConfigValues.contains("directory")) {
|
||||
cmd = QLatin1String("-$(INSTALL_DIR)");
|
||||
if (!dst_file.endsWith(Option::dir_sep))
|
||||
dst_file += Option::dir_sep;
|
||||
dst_file += fi.fileName();
|
||||
if (project->isActiveConfig("copy_dir_files")) {
|
||||
if (!dst_file.endsWith(Option::dir_sep))
|
||||
dst_file += Option::dir_sep;
|
||||
dst_file += filestr;
|
||||
}
|
||||
} else if (installConfigValues.contains("executable")) {
|
||||
cmd = QLatin1String("-$(INSTALL_PROGRAM)");
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in New Issue