diff options
author | cperciva <cperciva@FreeBSD.org> | 2009-07-11 22:30:37 +0000 |
---|---|---|
committer | cperciva <cperciva@FreeBSD.org> | 2009-07-11 22:30:37 +0000 |
commit | 45e5ee4e4abcd25acb2f6f45002bac051f1be006 (patch) | |
tree | fc0e35e98ca75b0e4e05883fa614fe1d937ffab1 /sys/contrib/dev | |
parent | 1a5c501f6673720ab13716879f0e5ac3677615ea (diff) | |
download | FreeBSD-src-45e5ee4e4abcd25acb2f6f45002bac051f1be006.zip FreeBSD-src-45e5ee4e4abcd25acb2f6f45002bac051f1be006.tar.gz |
Remove build timestamps from the following files:
/boot/kernel/hptrr.ko
/etc/mail/*.cf
/lib/libcrypto.so.5
/usr/bin/ntpq
/usr/sbin/amd
/usr/sbin/iasl
/usr/sbin/ntpd
/usr/sbin/ntpdate
/usr/sbin/ntpdc
There does not appear to be any purpose to having these timestamps, and
they have the irritating consequence that the aforementioned files will
be different every time they are rebuilt.
After this commit, the only remaining build timestamps are in the kernel,
the boot loaders, /usr/include/osreldate.h (the year in the copyright
notice), and lib*.a (the timestamps on all of the included .o files).
Reviewed by: scottl (hptrr), gshapiro (sendmail), simon (openssl),
roberto (ntp), jkim (acpica)
Approved by: re (kib)
Diffstat (limited to 'sys/contrib/dev')
-rw-r--r-- | sys/contrib/dev/acpica/compiler/aslcompile.c | 6 | ||||
-rw-r--r-- | sys/contrib/dev/acpica/compiler/aslutils.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/contrib/dev/acpica/compiler/aslcompile.c b/sys/contrib/dev/acpica/compiler/aslcompile.c index e958f8a..dda3ce3 100644 --- a/sys/contrib/dev/acpica/compiler/aslcompile.c +++ b/sys/contrib/dev/acpica/compiler/aslcompile.c @@ -217,11 +217,11 @@ AslCompilerSignon ( "%s", CompilerId); } - /* Version, build date, copyright, compliance */ + /* Version, 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); diff --git a/sys/contrib/dev/acpica/compiler/aslutils.c b/sys/contrib/dev/acpica/compiler/aslutils.c index 60414ac..a226a3d 100644 --- a/sys/contrib/dev/acpica/compiler/aslutils.c +++ b/sys/contrib/dev/acpica/compiler/aslutils.c @@ -519,8 +519,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); } /* Input/Output summary */ |