From 956bf4d8959d5544a38265bf7d5119240e60dc1e Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Thu, 11 Oct 2012 09:04:02 -0700 Subject: [PATCH] fixed error messages --- depanneur | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/depanneur b/depanneur index 0160097..8e445cf 100755 --- a/depanneur +++ b/depanneur @@ -1176,11 +1176,11 @@ if (@errors || @expansion_errors) { my $error_pkgs; if (@errors) { $error_pkgs = join("\n", @errors); - warning("the following packages build failed with rpmbuild issue:\n$error_pkgs"); + warning("the following packages failed to build due to rpmbuild issue:\n$error_pkgs"); } if (@expansion_errors) { $error_pkgs = join("\n", @expansion_errors); - warning("the following packages build failed with missing depends packages:\n$error_pkgs"); + warning("the following packages failed to build due to missing build dependencies:\n$error_pkgs"); } } -- 2.7.4