From 365f14cb679c09c1c29d0ad130b5e8064f2e1d8d Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Tue, 27 Nov 2007 08:21:19 +0000 Subject: [PATCH] Don't forget to unlink ${EBUILD_EXIT_STATUS_FILE} before each phase. (trunk r8706) svn path=/main/branches/2.1.2/; revision=8707 --- pym/portage.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pym/portage.py b/pym/portage.py index 9e5b1bed5..9c748aa8b 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -4284,6 +4284,8 @@ def doebuild(myebuild, mydo, myroot, mysettings, debug=0, listonly=0, myargs = [MISC_SH_BINARY, "preinst_bsdflags", "preinst_mask", "preinst_sfperms", "preinst_selinux_labels", "preinst_suid_scan"] + _doebuild_exit_status_unlink( + mysettings.get("EBUILD_EXIT_STATUS_FILE")) mysettings["EBUILD_PHASE"] = "" phase_retval = spawn(" ".join(myargs), mysettings, debug=debug, free=1, logfile=logfile) @@ -4301,6 +4303,8 @@ def doebuild(myebuild, mydo, myroot, mysettings, debug=0, listonly=0, # Post phase logic and tasks that have been factored out of # ebuild.sh. myargs = [MISC_SH_BINARY, "postinst_bsdflags"] + _doebuild_exit_status_unlink( + mysettings.get("EBUILD_EXIT_STATUS_FILE")) mysettings["EBUILD_PHASE"] = "" phase_retval = spawn(" ".join(myargs), mysettings, debug=debug, free=1, logfile=logfile) -- 2.26.2