diff options
author | Russell King <rmk@arm.linux.org.uk> | 2015-06-12 15:54:35 +0100 |
---|---|---|
committer | Russell King <rmk@arm.linux.org.uk> | 2015-06-12 16:23:03 +0100 |
commit | eeb94ce4db96de50fc96f0616eb5b581cd62f123 (patch) | |
tree | 55c54bd5541b93dae4420ccccdfc1ea6429dc3d3 /debian/mk.control | |
parent | 84cda34f20299e644f1c19e74bd3b7d921483b1a (diff) |
Add the debian build files to allow building for Ubuntu systems.
Signed-off-by: Russell King <rmk@arm.linux.org.uk>
Diffstat (limited to 'debian/mk.control')
-rw-r--r-- | debian/mk.control | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/debian/mk.control b/debian/mk.control new file mode 100644 index 00000000..c59ef757 --- /dev/null +++ b/debian/mk.control @@ -0,0 +1,15 @@ +#!/usr/bin/perl -w + +open BUILDDEPS, "debian/build-deps"; +@builddeplist = <BUILDDEPS>; +close BUILDDEPS; + +chomp(@builddeplist); +$builddeps = join(", ", @builddeplist); + +open CONTROLIN, "debian/control.in"; + +while(<CONTROLIN>){ + s/BUILDDEPS/$builddeps/; + print; +} |