We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2912522 commit c64446dCopy full SHA for c64446d
tools/export/cdt/__init__.py
@@ -31,12 +31,8 @@ def generate(self):
31
self.gen_file('cdt/necessary_software.tmpl', ctx,
32
join('eclipse-extras','necessary_software.p2f'))
33
34
- cproj = relpath('.cproject',self.export_dir)
35
- self.gen_file('cdt/.cproject.tmpl', ctx,
36
- cproj)
37
- proj = relpath('.project',self.export_dir)
38
- self.gen_file('cdt/.project.tmpl', ctx,
39
- proj)
+ self.gen_file('cdt/.cproject.tmpl', ctx, '.cproject')
+ self.gen_file('cdt/.project.tmpl', ctx, '.project')
40
41
42
class EclipseGcc(Eclipse, GccArm):
0 commit comments