Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 227643
b: refs/heads/master
c: 2979076
h: refs/heads/master
i:
  227641: 3103e4d
  227639: a68b95e
v: v3
  • Loading branch information
Mike Frysinger authored and Michal Marek committed Dec 14, 2010
1 parent 0337b36 commit c821123
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 43f901fbc8ba94bfa8d58155ba9378d7a13af636
refs/heads/master: 2979076fbf17a0947d6eba367b0cac19c907c160
7 changes: 7 additions & 0 deletions trunk/scripts/headers_install.pl
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,13 @@
close $in;

system $unifdef . " $tmpfile > $installdir/$file";
# unifdef will exit 0 on success, and will exit 1 when the
# file was processed successfully but no changes were made,
# so abort only when it's higher than that.
my $e = $? >> 8;
if ($e > 1) {
die "$tmpfile: $!\n";
}
unlink $tmpfile;
}
exit 0;

0 comments on commit c821123

Please sign in to comment.