freebsd-ports/devel/deputy/files/patch-lib-Deputy.pm
Kevin Lo 5870dd7033 Initial import of deputy 1.1
Deputy is a C compiler that is capable of preventing common C programming
errors, including out-of-bounds memory accesses as well as many other
common type-safety errors.
2007-03-19 03:33:27 +00:00

11 lines
438 B
Perl

--- lib/Deputy.pm.orig Mon Mar 19 10:13:52 2007
+++ lib/Deputy.pm Mon Mar 19 10:15:42 2007
@@ -154,7 +154,7 @@
my @args = @{$ppargs};
unshift @args,
$self->forceIncludeArg("$::deputyhome/include/deputy/annots.h");
- unshift @args, $self->{INCARG} . $::deputyhome . "/include";
+ unshift @args, $self->{INCARG} . "$::deputyhome" . "/include";
return $self->SUPER::preprocess_before_cil($src, $dest, \@args);
}