Find created sis files, even if DESTDIR is set.

Symbian mkspec puts the package file into the build directory,
not the destination directory.
This commit is contained in:
con
2010-05-07 10:41:34 +02:00
parent 2e0b19c078
commit 7d88da6a32
3 changed files with 10 additions and 6 deletions

View File

@@ -196,12 +196,14 @@ struct TargetInformation
QString workingDir;
QString target;
QString executable;
QString buildDir;
bool operator==(const TargetInformation &other) const
{
return workingDir == other.workingDir
&& target == other.target
&& executable == other.executable
&& valid == valid;
&& valid == valid
&& buildDir == buildDir;
}
bool operator!=(const TargetInformation &other) const
{
@@ -216,7 +218,8 @@ struct TargetInformation
: valid(other.valid),
workingDir(other.workingDir),
target(other.target),
executable(other.executable)
executable(other.executable),
buildDir(other.buildDir)
{
}