diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-06-15 20:07:01 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-06-15 20:07:01 +0000 |
commit | 154922283758de4ae5a7ac313c1018e0f6adf2ee (patch) | |
tree | 207e94bdaf2d883aeba4f495ded9eb80decb5a8a | |
parent | 34dbf4bbaa6cbd0f87f8b786caeab94b2a11b1f3 (diff) | |
download | rpmtools-154922283758de4ae5a7ac313c1018e0f6adf2ee.tar rpmtools-154922283758de4ae5a7ac313c1018e0f6adf2ee.tar.gz rpmtools-154922283758de4ae5a7ac313c1018e0f6adf2ee.tar.bz2 rpmtools-154922283758de4ae5a7ac313c1018e0f6adf2ee.tar.xz rpmtools-154922283758de4ae5a7ac313c1018e0f6adf2ee.zip |
- check build_synthesis success
- more explicit message
-rw-r--r-- | genhdlist2 | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -144,7 +144,7 @@ sub add_new_rpms_to_hdlist { my @rpms = keys %$rpms_todo or return; if ($verbose >= 0) { if (@rpms > 100 || $verbose == 0) { - print "adding ", int(@rpms), " rpms\n"; + print "adding ", int(@rpms), " new rpms not available in existing hdlist\n"; } else { print "adding ", join(' ', @rpms), "\n"; } @@ -189,7 +189,7 @@ sub build_synthesis { start => 0, end => $#{$urpm->{depslist}}, synthesis => $synthesis, - ); + ) or die "build_synthesis failed (disk full?)\n"; } sub generate_md5sum { |