/usr/share/perl5/Makefile/AST/Command.pm is in libmakefile-parser-perl 0.215-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | package Makefile::AST::Command;
use strict;
use warnings;
use base 'Class::Accessor::Fast';
#use Smart::Comments;
__PACKAGE__->mk_accessors(qw{
silent tolerant critical content target
});
sub as_str {
my $self = shift;
my $str;
if ($self->silent) {
$str .= '@';
}
if ($self->tolerant) {
$str .= '-';
}
if ($self->critical) {
$str .= '+';
}
$str .= $self->content;
}
1;
|