mirror of https://github.com/ARMmbed/mbed-os.git
Reverse order of relativizing paths and unixifing paths
'cause windows silly path separator is the same as the escape characterpull/2106/head
parent
3cf8bfbfb7
commit
3697dedb78
|
|
@ -132,9 +132,9 @@ class GccArm(Exporter):
|
||||||
|
|
||||||
def generate(self):
|
def generate(self):
|
||||||
# "make" wants Unix paths
|
# "make" wants Unix paths
|
||||||
self.resources.win_to_unix()
|
|
||||||
if self.sources_relative:
|
if self.sources_relative:
|
||||||
self.resources.relative_to(self.prj_paths[0])
|
self.resources.relative_to(self.prj_paths[0])
|
||||||
|
self.resources.win_to_unix()
|
||||||
|
|
||||||
to_be_compiled = []
|
to_be_compiled = []
|
||||||
for r_type in ['s_sources', 'c_sources', 'cpp_sources']:
|
for r_type in ['s_sources', 'c_sources', 'cpp_sources']:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue