diff options
-rwxr-xr-x | bin/misc-functions.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index ec83d80b2..1a6293281 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -527,6 +527,8 @@ dyn_package() { rm -f "${PORTAGE_BINPKG_TMPFILE}" die "Failed to append metadata to the tbz2 file" fi + local md5sum_output=$(md5sum "${PORTAGE_BINPKG_TMPFILE}") + echo ${md5sum_output% *} > "${PORTAGE_BUILDDIR}"/build-info/BINPKGMD5 vecho ">>> Done." cd "${PORTAGE_BUILDDIR}" touch .packaged || die "Failed to 'touch .packaged' in ${PORTAGE_BUILDDIR}" |