From: Joey Hess Date: Tue, 17 Nov 2009 02:17:13 +0000 (-0500) Subject: cute tail display of config.log, to include a header X-Git-Tag: 7.4.4~4 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=93cab1844819ee8f761606f6ccc511ebf07d2213;p=debhelper.git cute tail display of config.log, to include a header --- diff --git a/Debian/Debhelper/Buildsystem/autoconf.pm b/Debian/Debhelper/Buildsystem/autoconf.pm index 59b6c6b..a97de9c 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 fec5133..55b72c1 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