return undef # success
}
-sub cvs_keyword_subst_args ($) {
- my $file = shift;
-
- local $CWD = $config{srcdir};
-
- eval q{use File::MimeInfo};
- error($@) if $@;
- my $filemime = File::MimeInfo::default($file);
- # if (-T $file) {
-
- if (defined($filemime) && $filemime eq 'text/plain') {
- return ($file);
- }
- else {
- return ('-kb', $file);
- }
-}
-
sub rcs_add ($) {
# filename is relative to the root of the srcdir
my $file=shift;
return (-d "$dir/CVS") ? 1 : 0;
}
+sub cvs_keyword_subst_args ($) {
+ my $file = shift;
+
+ local $CWD = $config{srcdir};
+
+ eval q{use File::MimeInfo};
+ error($@) if $@;
+ my $filemime = File::MimeInfo::default($file);
+ # if (-T $file) {
+
+ if (defined($filemime) && $filemime eq 'text/plain') {
+ return ($file);
+ }
+ else {
+ return ('-kb', $file);
+ }
+}
+
sub cvs_runcvs(@) {
my @cmd = @_;
unshift @cmd, 'cvs', '-Q';