The following commit has been merged in the master branch:
commit 58fb8c4fdc5c2b15df460ed579c50c8c42570251
Author: James Vega <[email protected]>
Date: Sun Jul 11 14:06:32 2010 -0400
mk-build-deps: Include build-essential in Depends of the generated package.
Closes: #565889
Signed-off-by: James Vega <[email protected]>
diff --git a/debian/changelog b/debian/changelog
index 807dc5d..3a6b4a7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -29,8 +29,10 @@ devscripts (2.10.65) UNRELEASED; urgency=low
* diff2patches: Document the patch naming scheme and use of “debian/” as the
destination directory when “debian/patches/” doesn't exist. (Closes:
#552693)
- * mk-build-deps: Add options to build packages which depend on solely
- Build-Depends or Build-Depends-Indep. (Closes: #498898)
+ * mk-build-deps:
+ + Add options to build packages which depend on solely Build-Depends or
+ Build-Depends-Indep. (Closes: #498898)
+ + Include build-essential in Depends. (Closes: #565889)
[ Martin Zobel-Helas ]
* Remove svk from Recommends, it is no longer in the archive. (Closes:
diff --git a/scripts/mk-build-deps.pl b/scripts/mk-build-deps.pl
index 12d5662..8c7aa92 100755
--- a/scripts/mk-build-deps.pl
+++ b/scripts/mk-build-deps.pl
@@ -290,7 +290,7 @@ sub build_equiv
"Standards-Version: 3.7.3\n\n".
"Package: $opts->{name}-$opts->{type}\n".
"Architecture: $arch\n".
- "Depends: $opts->{depends}\n";
+ "Depends: build-essential, $opts->{depends}\n";
print EQUIVS "Version: $opts->{version}\n" if $opts->{version};
print EQUIVS "Description: build-dependencies for $opts->{name}\n" .
--
Git repository for devscripts
--
To unsubscribe, send mail to [email protected].