Changed so that modules use correct file path with spec.architecture instead of spec.target
This commit is contained in:
parent
ab4006ee2c
commit
1d484dbe5f
1 changed files with 2 additions and 2 deletions
|
@ -193,7 +193,7 @@ class Dotkit(EnvModule):
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def file_name(self):
|
def file_name(self):
|
||||||
return join_path(Dotkit.path, self.spec.target,
|
return join_path(Dotkit.path, self.spec.architecture,
|
||||||
self.spec.format('$_$@$%@$+$#.dk'))
|
self.spec.format('$_$@$%@$+$#.dk'))
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
@ -230,7 +230,7 @@ class TclModule(EnvModule):
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def file_name(self):
|
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
|
@property
|
||||||
|
|
Loading…
Reference in a new issue