Comment 2 for bug 331534

Revision history for this message
Jamie Strandboge (jdstrand) wrote :

Actually, Hardy had in SubDomain.pm:

sub isSkippableFile($) {
    my $path = shift;

    return ($path =~ /(^|\/)\.[^\/]*$/
            || $path =~ /\.rpm(save|new)$/
            || $path =~ /\.dpkg-(old|new|dist)$/
            || -e "$profiledir/disable/$path"
            || $path =~ /\~$/);
}

The '|| -e "$profiledir/disable/$path"' was dropped in Intrepid. So 'disable' didn't cause problems in Hardy.