File: .drc

package info (click to toggle)
newsgate 1.6-9
  • links: PTS
  • area: non-free
  • in suites: hamm
  • size: 332 kB
  • ctags: 310
  • sloc: ansic: 2,683; yacc: 499; sh: 278; lex: 183; perl: 151; makefile: 113
file content (17 lines) | stat: -rw-r--r-- 536 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
##
if ( $command eq "checkin" ) {
    $default_verbose = 0;
    ##  Files that must be updated for every checkin.
    $checkin'always_update{"patchlevel.h"} = 1;
    ##  Files that must be compared at every checkin.
    #$checkin'compare{"config/config.data"} = "config/config.dist";
}
elsif ( $command eq "scan" ) {
    ##  Items to ignore in specific directories.
    $scan'ignore_specific{"POST01"} = 1;
    $scan'ignore_specific{"POST02"} = 1;
    $scan'ignore_specific{"POST03"} = 1;
    $scan'ignore_specific{"POST04"} = 1;
}

1;