Added repository name

Changed git date from epoch to present commit date
This commit is contained in:
hanlet
2022-05-13 13:25:47 -07:00
parent 8e4ffd46a0
commit f0c86c5cb3
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ DBCORE_API int coreRelease(void)
printf ( "############################################################################\n" );
printf ( "## %s\n", epicsReleaseVersion );
printf ( "## %s\n", "Rev. " EPICS_VCS_VERSION );
printf ( "## %s\n", "Date " EPICS_VCS_VERSION_DATE );
printf ( "## %s\n", "Rev. Date " EPICS_VCS_VERSION_DATE );
printf ( "############################################################################\n" );
return 0;
}
+2 -2
View File
@@ -89,7 +89,7 @@ if (!$vcs && -d "$opt_t/.git") { # Git
$opt_V = $result;
$vcs = 'Git';
}
$cv = `git log -1 --format=%ct HEAD`;
$cv = `git show -s --format=%ci HEAD`;
}
if (!$vcs && -d "$opt_t/.svn") { # Subversion
print "== Found <top>/.svn directory\n" if $opt_v;
@@ -131,7 +131,7 @@ if (!$vcs) {
}
chomp $cv;
$opt_C=$cv;
$opt_C=$vcs . ': ' . $cv;
my $output = << "__END";
/* Generated file, do not edit! */