From: hyokeun.jeon Date: Sat, 27 Mar 2021 15:31:06 +0000 (+0900) Subject: BSR: give -j option to the report mode X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9329032c7f9c57a9d9da398e70939bcd7df5e209;p=tools%2Fdepanneur.git BSR: give -j option to the report mode --- diff --git a/depanneur b/depanneur index 166f431..69b1d2b 100755 --- a/depanneur +++ b/depanneur @@ -2657,6 +2657,9 @@ sub profiling_report { # Call BSR my $report_command = "bsr report -a $arch --verbose --depsnumbersort "; + if ($profiling_reference ne "") { + $report_command = $report_command . " -j $profiling_reference "; + } my $dep_xml_file = "$depends_dir/$dist/$arch/$dist\_$arch\_pkgdepends.xml"; if (-e $dep_xml_file) { $report_command = $report_command . " -x \"$dep_xml_file\" ";