job: fix merging with --ignore-dependencies

This fixes a bug where a job with --ignore-dependencies would wait for
other jobs because it merged into a previously queued job.
This commit is contained in:
Michal Schmidt 2013-01-25 19:54:21 +01:00
parent b5da077ddf
commit e45460d666

View File

@ -166,6 +166,7 @@ static void job_merge_into_installed(Job *j, Job *other) {
assert(other->type == JOB_NOP);
j->override = j->override || other->override;
j->ignore_order = j->ignore_order || other->ignore_order;
}
Job* job_install(Job *j) {