summaryrefslogtreecommitdiffstats
path: root/meta/classes/package_deb.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/package_deb.bbclass')
-rw-r--r--meta/classes/package_deb.bbclass5
1 files changed, 1 insertions, 4 deletions
diff --git a/meta/classes/package_deb.bbclass b/meta/classes/package_deb.bbclass
index 1f1bc81e14..3cd5efa788 100644
--- a/meta/classes/package_deb.bbclass
+++ b/meta/classes/package_deb.bbclass
@@ -176,10 +176,7 @@ python do_package_deb () {
176 if '\\n' in description: 176 if '\\n' in description:
177 # Manually indent 177 # Manually indent
178 for t in description.split('\\n'): 178 for t in description.split('\\n'):
179 # We don't limit the width when manually indent, but we do 179 ctrlfile.write(' %s\n' % (t.strip() or '.'))
180 # need the textwrap.fill() to set the initial_indent and
181 # subsequent_indent, so set a large width
182 ctrlfile.write('%s\n' % textwrap.fill(t, width=100000, initial_indent=' ', subsequent_indent=' '))
183 else: 180 else:
184 # Auto indent 181 # Auto indent
185 ctrlfile.write('%s\n' % textwrap.fill(description.strip(), width=74, initial_indent=' ', subsequent_indent=' ')) 182 ctrlfile.write('%s\n' % textwrap.fill(description.strip(), width=74, initial_indent=' ', subsequent_indent=' '))