]> err.no Git - dpkg/commitdiff
remove forced check for build-essential, we should not hardcode Debian policy into...
authorWichert Akkerman <wakkerma@debian.org>
Sat, 22 Jun 2002 14:15:14 +0000 (14:15 +0000)
committerWichert Akkerman <wakkerma@debian.org>
Sat, 22 Jun 2002 14:15:14 +0000 (14:15 +0000)
ChangeLog
debian/changelog
scripts/dpkg-checkbuilddeps.pl

index 9e6cb6ba034554968e7b6170bd79eb44c4ff3406..b274f807504fca8e8d1f23aeb95f69b0582d5353 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat Jun 22 16:13:42 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
+
+  * scripts/dpkg-checkbuilddeps.pl: remove forced check for build-essential,
+    we should not hardcode Debian policy into dpkg
+
 Sat Jun 22 14:17:03 CEST 2002 Wichert Akkerman <wichert@deephackmode.org>
 
   * debian/control, man/en/dpkg.8.sgml, main/dpkg.8: Apply (modified version
index 64e6c948a2d370b816056a1a3481c9710e22e495..7606dc801b0a663344f61d3f3127b4be3b55f5f3 100644 (file)
@@ -3,6 +3,7 @@ dpkg (1.11) unstable; urgency=low
   * Move dselect methods to dselect package
   * Improve long package descriptions
   * Improve formatting of dpkg manpage
+  * dpkg-checkbuilddeps no longer checks for build-essential
 
  -- Wichert Akkerman <wakkerma@debian.org>  Sat, 22 Jun 2002 14:02:59 +0200
 
index 8461ca9cbced4b5d77e23b1025a6ba96dc87c2bf..837856a0d9f7e8c2e79479043a59b35d89fa3528 100755 (executable)
@@ -35,7 +35,6 @@ local $/='';
 my $cdata=<CONTROL>;
 close CONTROL;
 
-push @unmet, build_depends("build-essential", @status);
 my $dep_regex=qr/\s*((.|\n\s+)*)\s/; # allow multi-line
 if ($cdata =~ /^Build-Depends:$dep_regex/mi) {
        push @unmet, build_depends($1, @status);