Changed so that modules use correct file path with spec.architecture instead of spec.target

This commit is contained in:
Mario Melara 2016-02-17 14:49:36 -08:00
parent ab4006ee2c
commit 1d484dbe5f

View file

@ -193,7 +193,7 @@ class Dotkit(EnvModule):
@property
def file_name(self):
return join_path(Dotkit.path, self.spec.target,
return join_path(Dotkit.path, self.spec.architecture,
self.spec.format('$_$@$%@$+$#.dk'))
@property
@ -230,7 +230,7 @@ class TclModule(EnvModule):
@property
def file_name(self):
return join_path(TclModule.path, self.spec.target, self.use_name)
return join_path(TclModule.path, self.spec.architecture, self.use_name)
@property