mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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
This commit is contained in:
parent
72ebfcd7e7
commit
b49a9e5bab
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue