Show More
@@ -27,11 +27,11 b' class gnuarch_source(converter_source, c' | |||
|
27 | 27 | |
|
28 | 28 | # Could use checktool, but we want to check for baz or tla. |
|
29 | 29 | self.execmd = None |
|
30 |
if util.find_exe(' |
|
|
31 |
self.execmd = ' |
|
|
30 | if util.find_exe('baz'): | |
|
31 | self.execmd = 'baz' | |
|
32 | 32 | else: |
|
33 |
if util.find_exe(' |
|
|
34 |
self.execmd = ' |
|
|
33 | if util.find_exe('tla'): | |
|
34 | self.execmd = 'tla' | |
|
35 | 35 | else: |
|
36 | 36 | raise util.Abort(_('cannot find a GNU Arch tool')) |
|
37 | 37 |
General Comments 0
You need to be logged in to leave comments.
Login now