Before proposing a diff, I need clarification. The release(8) manpage states:
"xenocara uses DESTDIR and RELEASEDIR as described above. While they may be set to the values used to build the rest of the system, be aware that the existing contents of DESTDIR will be removed as part of the xenocara build (this is necessary for release checklist processing)." Building the system release collects the SHA256 values of each fileset in (traditionally) /usr/rel/SHA256. This can be seen in /usr/src/etc/Makefile as: cksum -a sha256 BUILDINFO INSTALL.`arch -ks` \ ${ALL_KERNELS} ${MDEXT} ${MISETS} | sort > SHA256 Building xenocara's release will overwrite the existing /usr/rel/SHA256 with the SHA256 values of its base installation filesets if the same value of $RELEASEDIR is used. This can be seen in /usr/xenocara/Makefile: cksum -a sha256 x*tgz > SHA256 While this is not a showstopper & can easily be worked around, it seems there is a mismatch between what the code does & what the manpage specifies. Is the intent now that building the system & xenocara releases be done in separate directories, or should redirection be changed to appending in the code? Thanks!