mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-08 23:02:05 -04:00
handle EXCLUDED
This commit is contained in:
parent
df31d36c3f
commit
620a452ebe
1 changed files with 3 additions and 1 deletions
|
|
@ -15,7 +15,7 @@
|
|||
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
# PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
# $Id: merge_copyrights,v 1.34 2009/11/08 23:52:20 marka Exp $
|
||||
# $Id: merge_copyrights,v 1.35 2009/12/03 04:45:10 marka Exp $
|
||||
|
||||
%file_types = ();
|
||||
%file_years = ();
|
||||
|
|
@ -84,6 +84,8 @@ while (<FILES>) {
|
|||
$file_types{$_} = "X";
|
||||
} elsif ($base =~ /\.rnc$/i) {
|
||||
$file_types{$_} = "RNC";
|
||||
} elsif ($base =~ /^\.\/EXCLUDED$/i) {
|
||||
$file_types{$_} = "X";
|
||||
} elsif ($base =~ /\.bat$/i) {
|
||||
$file_types{$_} = "BAT";
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue