summaryrefslogtreecommitdiff
path: root/dh_gencontrol
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-09-12 14:18:03 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-09-12 14:18:03 -0400
commitec666dc94becbdb665a12c1d741a1358cfde6338 (patch)
tree977196c7fd38eaa67cbdf2e63cca4ac6dd1daa6b /dh_gencontrol
parent877b24da5966777f63c2003b9e3654efbcfc68b0 (diff)
dh_gencontrol: Ensure misc:Depends is set in substvars to avoid dpkg complaining about it when it's empty. Closes: #498666
Diffstat (limited to 'dh_gencontrol')
-rwxr-xr-xdh_gencontrol9
1 files changed, 8 insertions, 1 deletions
diff --git a/dh_gencontrol b/dh_gencontrol
index 785586f9..268ab3a0 100755
--- a/dh_gencontrol
+++ b/dh_gencontrol
@@ -42,6 +42,8 @@ init();
foreach my $package (@{$dh{DOPACKAGES}}) {
my $tmp=tmpdir($package);
my $ext=pkgext($package);
+
+ my $substvars="debian/${ext}substvars";
my $changelog=pkgfile($package,'changelog');
if (! $changelog) {
@@ -52,6 +54,11 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
doit("install","-o",0,"-g",0,"-d","$tmp/DEBIAN");
}
+ # avoid gratuitous warning
+ if (! -e $substvars || system("grep -q '^misc:Depends=' $substvars") != 0) {
+ complex_doit("echo misc:Depends= >> $substvars");
+ }
+
# Generate and install control file.
my @command="dpkg-gencontrol";
if (getpackages() > 1) {
@@ -61,7 +68,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
push @command, "-UHomepage";
push @command, "-n".udeb_filename($package);
}
- doit(@command, "-l$changelog", "-Tdebian/${ext}substvars",
+ doit(@command, "-l$changelog", "-T$substvars",
"-P$tmp",@{$dh{U_PARAMS}});
# This chmod is only necessary if the user sets the umask to