diff options
author | Bill Allombert <Bill.Allombert@math.u-bordeaux.fr> | 2009-09-06 13:18:50 +0200 |
---|---|---|
committer | Raphaël Hertzog <hertzog@debian.org> | 2011-06-06 14:55:46 +0200 |
commit | 14d48ef9abc2ce2d394e9ae4d69d4ba68b551620 (patch) | |
tree | 1a8112707367af5562709b6b15c5342c372f3ba5 /scripts/Dpkg/Control | |
parent | b3d0bb4a4cb8a994d3841912dccd116224498f32 (diff) | |
download | dpkg-14d48ef9abc2ce2d394e9ae4d69d4ba68b551620.tar.gz |
dpkg-buildpackage: support for Build-Features: build-arch
With this flag set in debian/control, dpkg-buildpackage will use
"debian/rules build-arch" or "debian/rules build-indep" when
appropriate.
Improved-by: Raphaël Hertzog <hertzog@debian.org>
Signed-off-by: Raphaël Hertzog <hertzog@debian.org>
Diffstat (limited to 'scripts/Dpkg/Control')
-rw-r--r-- | scripts/Dpkg/Control/Fields.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/Dpkg/Control/Fields.pm b/scripts/Dpkg/Control/Fields.pm index d7d7dcf5d..0183281a0 100644 --- a/scripts/Dpkg/Control/Fields.pm +++ b/scripts/Dpkg/Control/Fields.pm @@ -83,6 +83,9 @@ our %FIELDS = ( dependency => 'union', dep_order => 10, }, + 'Build-Features' => { + allowed => ALL_SRC, + }, 'Changed-By' => { allowed => CTRL_FILE_CHANGES, }, |