diff options
author | Mark Hymers <mhy@debian.org> | 2011-03-22 15:50:16 +0000 |
---|---|---|
committer | Raphaël Hertzog <hertzog@debian.org> | 2011-03-23 09:41:52 +0100 |
commit | a8cb927edb7dbd67c7a6084685998818b811caec (patch) | |
tree | bab0dea6ebcc09092d6ec746d1d8de5e27ad95ac /scripts/Dpkg/Control | |
parent | 6a7a20c72325a57762e34f5dbb9f79ba73b5d496 (diff) | |
download | dpkg-a8cb927edb7dbd67c7a6084685998818b811caec.tar.gz |
dpkg-gencontrol: add support for Built-Using field
And teach dpkg-deb to not complain about it.
Signed-off-by: Raphaël Hertzog <hertzog@debian.org>
Diffstat (limited to 'scripts/Dpkg/Control')
-rw-r--r-- | scripts/Dpkg/Control/Fields.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/Dpkg/Control/Fields.pm b/scripts/Dpkg/Control/Fields.pm index ea7d800eb..fc6b4284b 100644 --- a/scripts/Dpkg/Control/Fields.pm +++ b/scripts/Dpkg/Control/Fields.pm @@ -78,6 +78,11 @@ our %FIELDS = ( dependency => 'normal', dep_order => 2, }, + 'Built-Using' => { + allowed => ALL_PKG, + dependency => 'union', + dep_order => 10, + }, 'Changed-By' => { allowed => CTRL_FILE_CHANGES, }, |