5870dd7033
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.
11 lines
438 B
Perl
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);
|
|
}
|
|
|