Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1639)

Unified Diff: client/tools/htmlconverter.py

Issue 8590039: Add libdir when invoking frog. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/tools/htmlconverter.py
===================================================================
--- client/tools/htmlconverter.py (revision 1620)
+++ client/tools/htmlconverter.py (working copy)
@@ -190,7 +190,8 @@
'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 != "":
cmd.append(self.extra_flags);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698