From: Zac Medico Date: Sat, 9 Jun 2007 04:41:07 +0000 (-0000) Subject: Don't forget to rename the temporary binpkg after it's created. X-Git-Tag: v2.1.2.10~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d2ad95844bed61db67b610c9461742d56c903ae5;p=portage.git Don't forget to rename the temporary binpkg after it's created. svn path=/main/branches/2.1.2/; revision=6774 --- diff --git a/bin/quickpkg b/bin/quickpkg index dcdf9ea68..1cce8c340 100755 --- a/bin/quickpkg +++ b/bin/quickpkg @@ -117,8 +117,10 @@ def quickpkg_main(options, args, eout): xpak.tbz2(binpkg_tmpfile).recompose_mem(xpdata) finally: dblnk.unlockdb() - bintree.inject(cpv) binpkg_path = bintree.getname(cpv) + ensure_dirs(os.path.dirname(binpkg_path)) + os.rename(binpkg_tmpfile, binpkg_path) + bintree.inject(cpv) try: s = os.stat(binpkg_path) except OSError, e: