sbsv2/raptor/python/plugins/filter_whatcomp.py
branchwip
changeset 115 5869e06bf2ac
parent 114 35ed82e9d574
child 132 2022a4abb126
--- a/sbsv2/raptor/python/plugins/filter_whatcomp.py	Wed Dec 16 15:25:49 2009 +0000
+++ b/sbsv2/raptor/python/plugins/filter_whatcomp.py	Fri Dec 18 18:19:11 2009 +0000
@@ -24,8 +24,7 @@
 class FilterWhatComp(filter_what.FilterWhat):
 
         def __init__(self): 
-		super(filter_what.FilterWhat,self).__init__()
-		self.path_prefix_to_strip = os.path.abspath(os.environ["EPOCROOT"])
+		super(filter_what.FilterWhat, self).__init__()
 
 	def write(self, text):
 		"process some log text"
@@ -49,3 +48,9 @@
 		
 	def end_bldinf(self):
 		self.outfile.write("++ Finished\n")
+
+        def open(self, build_parameters):
+		t = filter_what.FilterWhat.open(self, build_parameters)
+		self.path_prefix_to_strip = os.path.abspath(build_parameters.epocroot)
+		self.path_prefix_to_add_on = build_parameters.incoming_epocroot
+		return t