From b49a9e5bab07c3f9ae18f209ef65c03a70fe0638 Mon Sep 17 00:00:00 2001 From: Jens Schweikhardt Date: Sun, 13 Nov 2005 10:13:31 +0000 Subject: [PATCH] Don't augment the DRIVER_VERSION "v1.12" with __DATE__ and __TIME__. This is the only file of > 1700 files in a buildkernel here doing that. It makes reproducible builds (same source => same binary) impossible. Spotted by: devel/ccache --- sys/dev/hptmv/entry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/hptmv/entry.c b/sys/dev/hptmv/entry.c index 6b7631e2db3..1c1d6d3add7 100644 --- a/sys/dev/hptmv/entry.c +++ b/sys/dev/hptmv/entry.c @@ -159,7 +159,7 @@ static ST_HPT_DPC DpcQueue[MAX_DPC]; static int DpcQueue_First=0; static int DpcQueue_Last = 0; -char DRIVER_VERSION[] = "v1.12 (" __DATE__ " " __TIME__ ")"; +char DRIVER_VERSION[] = "v1.12"; #if (__FreeBSD_version >= 500000) static struct mtx driver_lock;