chiark / gitweb /
sbuild; Do not pass -A
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Fri, 1 Jul 2016 21:28:29 +0000 (22:28 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Fri, 1 Jul 2016 21:31:38 +0000 (22:31 +0100)
Incompatible change:

* dgit sbuild does not pass -A to sbuild.  Consequently the default
  build is now simply sbuild's default.  With older sbuilds it was
  possible to override dgit's -A by passing another option.  But this
  has been changed recently and now this default setting is very
  awkward to change for the dgit user.

debian/changelog
dgit

index a52b7123e684e0ed5e6963778476a06e4bd5d5d8..a1b56a81fed18c22a8370762350b66b3399dca5c 100644 (file)
@@ -1,3 +1,14 @@
+dgit (1.5~~) unstable; urgency=medium
+
+  Incompatible change:
+  * dgit sbuild does not pass -A to sbuild.  Consequently the default
+    build is now simply sbuild's default.  With older sbuilds it was
+    possible to override dgit's -A by passing another option.  But this
+    has been changed recently and now this default setting is very awkward
+    to change for the dgit user.
+
+ --
+
 dgit (1.4) unstable; urgency=high
 
   Bugfixes:
diff --git a/dgit b/dgit
index e02a6bd267fc506b224c9abb2db9f6aa7b9749e1..9edc6577a4feb3a46129321570bac783ade70c11 100755 (executable)
--- a/dgit
+++ b/dgit
@@ -75,7 +75,7 @@ our (@curl) = qw(curl -f);
 our (@dput) = qw(dput);
 our (@debsign) = qw(debsign);
 our (@gpg) = qw(gpg);
-our (@sbuild) = qw(sbuild -A);
+our (@sbuild) = qw(sbuild);
 our (@ssh) = 'ssh';
 our (@dgit) = qw(dgit);
 our (@dpkgbuildpackage) = qw(dpkg-buildpackage -i\.git/ -I.git);