tools: Make genVersionHeader.pl log more detailed and streamlined with other EPICS build output

This commit is contained in:
Ralph Lange
2014-08-27 11:03:54 -07:00
parent 3885c809a6
commit 55cf45364c
+4 -4
View File
@@ -58,13 +58,13 @@ if(open($DST, '+<', $outfile)) {
print "== have\n$actual" if $opt_v;
if($actual eq $output) {
print "keep existing $outfile\n";
print "Keeping existing VCS version header $outfile\n";
exit(0)
}
print "updating $outfile\n";
print "Updating VCS version header $outfile\n";
} else {
print "create $outfile\n";
open($DST, '>', $outfile) or die "Unable to open or create $outfile";
print "Creating VCS version header $outfile\n";
open($DST, '>', $outfile) or die "Unable to open or create VCS version header $outfile";
}
seek($DST,0,0);