* dump_setup.cc (check_package_files): Don't fail on empty package.

This commit is contained in:
Christopher Faylor
2003-09-06 02:02:30 +00:00
parent 661cc22065
commit 1f602fd729
2 changed files with 6 additions and 3 deletions

View File

@ -266,9 +266,8 @@ check_package_files (int verbose, char *package)
if (!fp)
{
if (verbose)
printf ("Can't open file list /etc/setup/%s.lst.gz for package %s\n",
package, package);
return false;
printf ("Empty package %s\n", package);
return true;
}
bool result = true;