[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[SCM] Debian package checker branch, master, updated. 2.3.3-16-g893e141



The following commit has been merged in the master branch:
commit 3296f6d116a7c27999f8c4c473dadf64aed6aee9
Author: Cyril Brulebois <kibi@debian.org>
Date:   Tue Mar 9 16:17:43 2010 +0100

    Fix package-depends-on-hardcoded-libc check.
    
    The glibc source package was renamed into eglibc.

diff --git a/checks/control-file b/checks/control-file
index 66b34a7..f893b48 100644
--- a/checks/control-file
+++ b/checks/control-file
@@ -175,7 +175,7 @@ for my $control (@binary_controls) {
 		tag "package-depends-on-itself", $control->{package}, $dep_fields[$strong]
 		    if $relation->implies($control->{package});
 		tag 'package-depends-on-hardcoded-libc', $control->{package}, $dep_fields[$strong]
-		    if ($relation->implies($libcs) and $pkg ne "glibc");
+		    if ($relation->implies($libcs) and $pkg ne "eglibc");
 		for my $weak (($strong + 1) .. $#dep_fields) {
 			next unless $control->{$dep_fields[$weak]};
 			for my $dependency (split /\s*,\s*/, $control->{$dep_fields[$weak]}) {

-- 
Debian package checker


Reply to: