summaryrefslogtreecommitdiff
path: root/postprocess
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2012-11-15 08:54:11 +0100
committerFridrich Štrba <fridrich.strba@bluewin.ch>2012-11-15 08:54:29 +0100
commita43a76cd5aa2f145f2cb43fcdbc8f21fb6c89af0 (patch)
tree4aaac09e93d46f87c0c8164a6668ed57a196ebad /postprocess
parent823b334ad73c1caa961b8ff55bf59600ae137741 (diff)
Differenciate error messages to know quickly what failed
Change-Id: I4a445c345706351da8f022180d142249340acd2f
Diffstat (limited to 'postprocess')
-rw-r--r--postprocess/packconfig/packconfig.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/postprocess/packconfig/packconfig.pl b/postprocess/packconfig/packconfig.pl
index 88b84860cac0..c5b4e903c0d4 100644
--- a/postprocess/packconfig/packconfig.pl
+++ b/postprocess/packconfig/packconfig.pl
@@ -124,7 +124,7 @@ sub get_core_files
find_core_files($files_hash_ref);
if ( !keys %$files_hash_ref ) {
- print_error("can't find any config files in '$files_path'", 3);
+ print_error("can't find any core config files in '$files_path'", 3);
}
return wantarray ? @main::file_list : \@main::file_list;
@@ -149,7 +149,7 @@ sub get_lang_files
find_lang_files($files_hash_ref, $lang);
if ( !keys %$files_hash_ref ) {
- print_error("can't find any config files in '$files_path'", 3);
+ print_error("can't find any lang config files in '$files_path'", 3);
}
return wantarray ? @main::file_list : \@main::file_list;