| Index: sdk/lib/html/scripts/systemhtml.py
|
| diff --git a/sdk/lib/html/scripts/systemhtml.py b/sdk/lib/html/scripts/systemhtml.py
|
| index dbdb4ccaa29d86cc75e6e1df969ab95cedf3030b..70ebde9e0fc5d0d55d277a72915f50847efbd24a 100644
|
| --- a/sdk/lib/html/scripts/systemhtml.py
|
| +++ b/sdk/lib/html/scripts/systemhtml.py
|
| @@ -877,7 +877,8 @@ class DartLibraryEmitter():
|
| self._dart_libraries = dart_libraries
|
|
|
| def FileEmitter(self, basename, library_name, template=None):
|
| - path = os.path.join(self._dart_sources_dir, '%s.dart' % basename)
|
| + aux_dir = os.path.join(self._dart_sources_dir, library_name)
|
| + path = os.path.join(aux_dir, '%s.dart' % basename)
|
| if not path in self._path_to_emitter:
|
| emitter = self._multiemitter.FileEmitter(path)
|
| if not template is None:
|
|
|