Drop the build date from the iasl binary.

This commit is contained in:
joerg 2011-01-12 22:53:16 +00:00
parent 76c771d82c
commit 664edd5c61
2 changed files with 4 additions and 4 deletions

View File

@ -217,8 +217,8 @@ AslCompilerSignon (
/* Version, build date, copyright, compliance */
FlPrintFile (FileId,
" version %X [%s]\n%s%s\n%s%s\n%s\n",
(UINT32) ACPI_CA_VERSION, __DATE__,
" version %X\n%s%s\n%s%s\n%s\n",
(UINT32) ACPI_CA_VERSION,
Prefix, CompilerCopyright,
Prefix, CompilerCompliance,
Prefix);

View File

@ -521,8 +521,8 @@ UtDisplaySummary (
{
/* Compiler name and version number */
FlPrintFile (FileId, "%s version %X [%s]\n",
CompilerId, (UINT32) ACPI_CA_VERSION, __DATE__);
FlPrintFile (FileId, "%s version %X\n",
CompilerId, (UINT32) ACPI_CA_VERSION);
}
if (Gbl_FileType == ASL_INPUT_TYPE_ASCII_DATA)