From 5b96f1094a69d215e56e559cc30f3b3a8d53703d Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Fri, 23 Nov 2007 01:57:41 +0000 Subject: [PATCH] Use %% instead of % parameter expansion where appropriate for md5sum output. (trunk r8613) svn path=/main/branches/2.1.2/; revision=8614 --- bin/misc-functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index c1aded7c2..b0e1a42ed 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -522,7 +522,7 @@ dyn_package() { mv -f "${pkg_tmp}" "${pkg_dest}" || die "Failed to move tbz2 to ${pkg_dest}" ln -sf "../All/${PF}.tbz2" "${PKGDIR}/${CATEGORY}/${PF}.tbz2" || die "Failed to create symlink in ${PKGDIR}/${CATEGORY}" local md5sum_output=$(md5sum "${pkg_dest}") - echo ${md5sum_output% *} > "${PORTAGE_BUILDDIR}"/build-info/BINPKGMD5 + echo ${md5sum_output%% *} > "${PORTAGE_BUILDDIR}"/build-info/BINPKGMD5 vecho ">>> Done." cd "${PORTAGE_BUILDDIR}" touch .packaged || die "Failed to 'touch .packaged' in ${PORTAGE_BUILDDIR}" -- 2.26.2