svn commit: r338856 - head/sys/conf
Ed Maste
emaste at FreeBSD.org
Fri Sep 21 13:43:07 UTC 2018
Author: emaste
Date: Fri Sep 21 13:43:06 2018
New Revision: 338856
URL: https://svnweb.freebsd.org/changeset/base/338856
Log:
Include kernel ident in uname
In non-reproducible mode we have the kernel ident as a side effect of
including the build directory. Explicitly add it to the ident string in
reproducible mode.
Reported by: mjg
Approved by: re (gjb)
Sponsored by: The FreeBSD Foundation
Modified:
head/sys/conf/newvers.sh
Modified: head/sys/conf/newvers.sh
==============================================================================
--- head/sys/conf/newvers.sh Fri Sep 21 13:20:41 2018 (r338855)
+++ head/sys/conf/newvers.sh Fri Sep 21 13:43:06 2018 (r338856)
@@ -293,7 +293,7 @@ done
shift $((OPTIND - 1))
if [ -z "${include_metadata}" ]; then
- VERINFO="${VERSION}${svn}${git}${hg}${p4version}"
+ VERINFO="${VERSION}${svn}${git}${hg}${p4version} ${i}"
VERSTR="${VERINFO}\\n"
else
VERINFO="${VERSION} #${v}${svn}${git}${hg}${p4version}: ${t}"
More information about the svn-src-all
mailing list