diff --git a/builders/builder.py b/builders/builder.py index f5e4d57..d2af1ad 100644 --- a/builders/builder.py +++ b/builders/builder.py @@ -378,7 +378,9 @@ class Builder(object): """ self._print('Copying OpenLP font...') source = os.path.join(self.source_path, 'core', 'ui', 'fonts', 'OpenLP.ttf') - dest = os.path.join(self.dist_path, 'core', 'ui', 'fonts', 'OpenLP.ttf') + dest_dir = os.path.join(self.dist_path, 'core', 'ui', 'fonts') + dest = os.path.join(self.dest_dir, 'OpenLP.ttf') + os.makedirs(dest_dir) copy(source, dest) def copy_extra_files(self):