Skip to content

Commit

Permalink
[backend] do not use undef as build config when calling readdeps
Browse files Browse the repository at this point in the history
  • Loading branch information
mlschroe authored and adrianschroeter committed Aug 30, 2010
1 parent 9ad4343 commit 08ac7be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ReleaseNotes-2.0.6
Expand Up @@ -19,5 +19,6 @@ Fixes:
* api: submit request to a project without the package, but linked project works now
* api: fix runtime error when using group permissions in attribute permissions
* api: fix a crash in webui when using the status view due to missing attribute
* backend: fixed prefer-pkgs support for local build
* backend: dispatcher takes care of badhosts now and is not assigning the job again to the host

2 changes: 1 addition & 1 deletion src/backend/bs_repserver
Expand Up @@ -1737,7 +1737,7 @@ sub getbuildinfo {
if ($pdata->{'ldepfile'}) {
# have local deps, add them to pool
my $data = {};
Build::readdeps(undef, $data, $pdata->{'ldepfile'});
Build::readdeps({ %$bconf }, $data, $pdata->{'ldepfile'});
my $r = $pool->repofromdata('', $data);
die("ldepfile repo add failed\n") unless $r;
}
Expand Down

0 comments on commit 08ac7be

Please sign in to comment.