This commit is contained in:
Eelco Dolstra 2012-04-15 21:35:46 +00:00
parent 1e228267be
commit 5793baa3cd

View file

@ -366,7 +366,7 @@ sub getEvals {
foreach my $input (@{$curInputs}) {
my $p = $prevInputsHash{$input->name};
push @changedInputs, $input
if !defined $p || $input->revision != $p->revision || $input->type != $p->type || $input->uri != $p->uri;
if !defined $p || $input->revision ne $p->revision || $input->type ne $p->type || $input->uri ne $p->uri;
}
$curInputs = $prevInputs;