From: Eric Blake Date: Tue, 15 Feb 2011 21:22:11 +0000 (-0700) Subject: doc: fix debug advice typo X-Git-Tag: v2.68b~107 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e5fb1ec281e5bcd37d686bb7ce4994a7b4fee65d;p=thirdparty%2Fautoconf.git doc: fix debug advice typo * doc/autoconf.texi (Debugging): Put shell option in right place. Reported by Reuben Thomas. Signed-off-by: Eric Blake --- diff --git a/ChangeLog b/ChangeLog index 6f0b93d4..fbfbc537 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2011-02-15 Eric Blake + + doc: fix debug advice typo + * doc/autoconf.texi (Debugging): Put shell option in right place. + Reported by Reuben Thomas. + 2011-02-12 Giulio Paci (tiny change) Ralf Wildenhues diff --git a/doc/autoconf.texi b/doc/autoconf.texi index badf11d0..5be070cf 100644 --- a/doc/autoconf.texi +++ b/doc/autoconf.texi @@ -25464,7 +25464,7 @@ failed. Debugging @command{configure} script execution may be done by sprinkling pairs of @code{set -x} and @code{set +x} into the shell script before and after the region that contains a bug. Running the whole script with -@samp{@var{shell} ./configure -vx 2>&1 | tee @var{log-file}} with a decent +@samp{@var{shell} -vx ./configure 2>&1 | tee @var{log-file}} with a decent @var{shell} may work, but produces lots of output. Here, it can help to search for markers like @samp{checking for} a particular test in the @var{log-file}.