diff options
author | Frans Pop <elendil@planet.nl> | 2009-08-16 07:18:59 +0000 |
---|---|---|
committer | Frans Pop <elendil@planet.nl> | 2009-08-16 07:18:59 +0000 |
commit | 09980ee088c0d734767fc51563686e28c1af58a5 (patch) | |
tree | 87109b9451a79bf187fdc800bb02618db121477d /debian/genbuilddeps | |
parent | 160fe208b7f7f76fe47c47faf1d0a1bda943d9cf (diff) | |
download | installation-guide-09980ee088c0d734767fc51563686e28c1af58a5.zip |
Move most build dependencies to Build-Depends-Indep
Diffstat (limited to 'debian/genbuilddeps')
-rwxr-xr-x | debian/genbuilddeps | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/genbuilddeps b/debian/genbuilddeps index ca94a4f06..1a35afec0 100755 --- a/debian/genbuilddeps +++ b/debian/genbuilddeps @@ -1,6 +1,6 @@ #!/usr/bin/perl # Generate build deps line from comments in the control file and replace -# the current build deps line in the control file with it. +# the current Build-Depends-Indep line in the control file with it. my $control; if (-e "debian/control") { @@ -28,7 +28,7 @@ close IN; my $builddeps=join(", ", @builddeps); open (OUT, ">$control.tmp") || die "write $control.tmp: $!"; foreach (@lines) { - s/^(Build-Depends:\s+)(.*)/$1$builddeps/; + s/^(Build-Depends-Indep:\s+)(.*)/$1$builddeps/; print OUT || die "print: $!"; } close OUT || die "close: $!"; |