debian/bin/gencontrol.py: Support disabling debug infos in unreleased builds.

svn path=/dists/trunk/linux-2.6/; revision=18507
This commit is contained in:
Bastian Blank 2012-01-12 11:28:06 +00:00
parent 96bd71ce65
commit 31591fe39a
1 changed files with 6 additions and 0 deletions

View File

@ -268,6 +268,12 @@ class Gencontrol(Base):
extra['headers_arch_depends'].append('%s (= ${binary:Version})' % packages_own[-1]['Package'])
build_debug = config_entry_build.get('debug-info')
if build_debug and self.changelog[0].distribution == 'UNRELEASED' and os.getenv('DEBIAN_KERNEL_DISABLE_DEBUG'):
import warnings
warnings.warn(u'Disable building of debug infos on request (DEBIAN_KERNEL_DISABLE_DEBUG)')
build_debug = False
if build_debug:
makeflags['DEBUG'] = True
packages_own.extend(self.process_packages(self.templates['control.image-dbg'], vars))