chiark / gitweb /
* Fix handling of non-.deb-producing source packages (eg, ones
authorIan Jackson <ian@davenant.greenend.org.uk>
Mon, 16 Jul 2007 15:52:41 +0000 (16:52 +0100)
committerIan Jackson <ian@davenant.greenend.org.uk>
Mon, 16 Jul 2007 15:52:41 +0000 (16:52 +0100)
  which produce only .udebs).

debian/changelog
runner/adt-run

index 69f155989bca23bcf378a428e8a1984d5b05bf44..d75fbcbc2300a5f362a300c6eef034e7002f653f 100644 (file)
@@ -5,6 +5,8 @@ autopkgtest (1.0.3) unstable; urgency=low
   * Make builds work again: Fix `cd *' in work.write (broken by
     inclusion of `tmpdir' in that directory).
   * adt-testreport-onepackage has better reporting for DC-running.
+  * Fix handling of non-.deb-producing source packages (eg, ones
+    which produce only .udebs).
 
  --
 
index de2f0cb46e3560b8d66d4890905de872aeac6c10..e5a2c97ab861f9f515a24d5ffbb0f310c962d9be 100755 (executable)
@@ -1677,7 +1677,7 @@ def build_source(act, control_override):
                result_debs = source_rules_command(act,script,what,
                                'binary',work,work.write(True),
                                results_lines=1, xargs=['x',tmpdir])
-               if result_debs == '*': debs = []
+               if result_debs == '*.deb': debs = []
                else: debs = result_debs.split(' ')
                debug_b('debs='+`debs`)
                re = regexp.compile('^([-+.0-9a-z]+)_[^_/]+(?:_[^_/]+)\.deb$')