Remove unneeded relpath calculations

pull/3052/head
Jimmy Brisson 2016-10-17 14:51:28 -05:00
parent 2912522930
commit c64446dc39
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,
join('eclipse-extras','necessary_software.p2f'))
cproj = relpath('.cproject',self.export_dir)
self.gen_file('cdt/.cproject.tmpl', ctx,
cproj)
proj = relpath('.project',self.export_dir)
self.gen_file('cdt/.project.tmpl', ctx,
proj)
self.gen_file('cdt/.cproject.tmpl', ctx, '.cproject')
self.gen_file('cdt/.project.tmpl', ctx, '.project')
class EclipseGcc(Eclipse, GccArm):