diff options
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/toaster/toastergui/static/js/projectapp.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/js/projectapp.js b/bitbake/lib/toaster/toastergui/static/js/projectapp.js index 43436c5e69..a3309c76af 100644 --- a/bitbake/lib/toaster/toastergui/static/js/projectapp.js +++ b/bitbake/lib/toaster/toastergui/static/js/projectapp.js | |||
@@ -357,7 +357,7 @@ projectApp.controller('prjCtrl', function($scope, $modal, $http, $interval, $loc | |||
357 | }; | 357 | }; |
358 | 358 | ||
359 | $scope.buildExistingTarget = function(targets) { | 359 | $scope.buildExistingTarget = function(targets) { |
360 | $scope.buildTargetList(targets.map(function(v){return v.target;})); | 360 | $scope.buildTargetList(targets.map(function(v){return ((v.task) ? v.target + ":" + v.task : v.target);})); |
361 | }; | 361 | }; |
362 | 362 | ||
363 | $scope.buildTargetList = function(targetlist) { | 363 | $scope.buildTargetList = function(targetlist) { |