| Index: client/tools/htmlconverter.py
|
| diff --git a/client/tools/htmlconverter.py b/client/tools/htmlconverter.py
|
| index d62fa0aff8c3d9b5ad61397af8abc16c9f980961..ffac2d84406b6491f413da696e8bf3d3e07ed1c0 100755
|
| --- a/client/tools/htmlconverter.py
|
| +++ b/client/tools/htmlconverter.py
|
| @@ -185,12 +185,12 @@ class DartCompiler(object):
|
| if self.optimize:
|
| cmd.append('--optimize')
|
| else:
|
| - binary = abspath(join(DART_PATH, 'frog',
|
| + binary = abspath(join(DART_PATH,
|
| utils.GetBuildRoot(utils.GuessOS(), 'release', 'ia32'),
|
| 'frog', 'bin', 'frogsh'))
|
| if not exists(binary):
|
| raise ConverterException(FROG_NOT_FOUND_ERROR % DART_PATH)
|
| - cmd = [binary, '--compile-only',
|
| + cmd = [binary, '--compile-only',
|
| '--libdir=' + join(DART_PATH, 'frog', 'lib'),
|
| '--out=' + self.outputFileName(inputfile, outdir)]
|
| if self.extra_flags != "":
|
|
|