From 9e48fa2f38e416e291f5b8ee4c1c3e3102f4a933 Mon Sep 17 00:00:00 2001 From: stevenknight Date: Fri, 3 May 2002 15:08:17 +0000 Subject: [PATCH] Fix for handling deleted files in packages when closing a branch in Aegis. git-svn-id: http://scons.tigris.org/svn/scons/trunk@361 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- SConstruct | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/SConstruct b/SConstruct index 8e56006b..25f4fbfa 100644 --- a/SConstruct +++ b/SConstruct @@ -738,10 +738,7 @@ if change: for line in map(lambda x: x[:-1], os.popen(cmd, "r").readlines()): a = string.split(line) if a[1] == "remove": - if a[3][0] == '(': - df.append(a[4]) - else: - df.append(a[3]) + df.append(a[-1]) cmd = "aegis -list -terse pf 2>/dev/null" pf = map(lambda x: x[:-1], os.popen(cmd, "r").readlines()) -- 2.26.2