Remove unneeded relpath calculations

pull/3079/head
Jimmy Brisson 2016-10-17 14:51:28 -05:00 committed by Russ Butler
parent 6d05f1db7c
commit 5c35230657
1 changed files with 2 additions and 6 deletions

View File

@ -31,12 +31,8 @@ class Eclipse(Makefile):
self.gen_file('cdt/necessary_software.tmpl', ctx, self.gen_file('cdt/necessary_software.tmpl', ctx,
join('eclipse-extras','necessary_software.p2f')) join('eclipse-extras','necessary_software.p2f'))
cproj = relpath('.cproject',self.export_dir) self.gen_file('cdt/.cproject.tmpl', ctx, '.cproject')
self.gen_file('cdt/.cproject.tmpl', ctx, self.gen_file('cdt/.project.tmpl', ctx, '.project')
cproj)
proj = relpath('.project',self.export_dir)
self.gen_file('cdt/.project.tmpl', ctx,
proj)
class EclipseGcc(Eclipse, GccArm): class EclipseGcc(Eclipse, GccArm):