As described in https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=224433
the top level `make buildworld' target should display the build time in seconds
Differential D13911
`make buildworld' should display the build time in seconds wosch on Jan 14 2018, 8:09 PM. Authored by Tags Referenced Files
Details As described in https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=224433 the top level `make buildworld' target should display the build time in seconds
Diff Detail
Event TimelineComment Actions This looks good in principle, modulo some nits. I'd let Bryan have the final say, but commit it if he says nothing.
Comment Actions You can also just record the time the build starts with something like this: .if !defined(_BUILDWORLD_START) _BUILDWORLD_START!= date +%s .export _BUILDWORLD_START .endif Then compare its value in buildworld_epilogue, no tmpfile needed. |