diff options
author | lloyd <[email protected]> | 2009-07-15 14:02:09 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-07-15 14:02:09 +0000 |
commit | d5ee63b00a11b72442cf7f38a78f262b7728f130 (patch) | |
tree | ae0d48942c508171945d3dd3d4d5d4b2f35f364e /configure.pl | |
parent | 1b3c0fc31981f61652885c47ea351263506121f2 (diff) |
New module load_on directive 'never', to mark known-buggy code
Diffstat (limited to 'configure.pl')
-rwxr-xr-x | configure.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.pl b/configure.pl index 0cdd402d7..539256acb 100755 --- a/configure.pl +++ b/configure.pl @@ -513,6 +513,7 @@ sub can_enable_module { unless($is_enabled) { return '' if $modinfo{'load_on'} eq 'dep' and $for_dep == 0; return '' if $modinfo{'load_on'} eq 'request'; + return '' if $modinfo{'load_on'} eq 'never'; } # Doesn't run here, don't bother |