diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2024-02-11 22:45:51 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2024-02-11 22:45:51 +0000 |
commit | ed27ae8df4b10f67289a32458d89d143e758f6d4 (patch) | |
tree | c6917508b0b77c7c1d816c2d3cc21be22938a2f1 | |
parent | 470f9f13de10e47e6d45721c15af6b4abe7aad55 (diff) | |
download | src-ed27ae8df4b10f67289a32458d89d143e758f6d4.tar.gz src-ed27ae8df4b10f67289a32458d89d143e758f6d4.zip |
Bump __FreeBSD_version after clang/llvm PIE change
Otherwise, incremental builds might fail with various interesting
errors. This is a bit of a big hammer, but I don't know of any other way
to force rebuilds of all these libraries.
Reported by: bapt
Fixes: 470f9f13de10
MFC after: 1 week
-rw-r--r-- | sys/sys/param.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/param.h b/sys/sys/param.h index 8740d37facc3..ff932e6c60dd 100644 --- a/sys/sys/param.h +++ b/sys/sys/param.h @@ -73,7 +73,7 @@ * cannot include sys/param.h and should only be updated here. */ #undef __FreeBSD_version -#define __FreeBSD_version 1500013 +#define __FreeBSD_version 1500014 /* * __FreeBSD_kernel__ indicates that this system uses the kernel of FreeBSD, |