summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Debian/Debhelper/Buildsystem/autoconf.pm2
-rw-r--r--debian/changelog2
2 files changed, 2 insertions, 2 deletions
diff --git a/Debian/Debhelper/Buildsystem/autoconf.pm b/Debian/Debhelper/Buildsystem/autoconf.pm
index 59b6c6b2..a97de9c6 100644
--- a/Debian/Debhelper/Buildsystem/autoconf.pm
+++ b/Debian/Debhelper/Buildsystem/autoconf.pm
@@ -54,7 +54,7 @@ sub configure {
};
if ($@) {
if (-e $this->get_buildpath("config.log")) {
- $this->doit_in_builddir("cat config.log");
+ $this->doit_in_builddir("tail -v -n +0 config.log");
}
die $@;
}
diff --git a/debian/changelog b/debian/changelog
index fec51338..55b72c18 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -23,7 +23,7 @@ debhelper (7.4.4) UNRELEASED; urgency=low
* Typo. Closes: #555659
* cmake: Set CTEST_OUTPUT_ON_FAILURE when running test suite.
Closes: #555807 (Modestas Vainius)
- * autoconf: If configure fails, cat config.log. Intended to make
+ * autoconf: If configure fails, display config.log. Intended to make
it easier to debug configure script failures on autobuilders.
Closes: #556384