bootstrap
author Johannes Stezenbach <js@sig21.net>
Tue Oct 30 00:22:25 2012 +0000 (2012-10-30)
changeset 3097 5c67476c7342
permissions -rwxr-xr-x
scripts/functions: fix endless loop in debug-shell with IO redirection

CT_DEBUG_INTERACTIVE is disabled when stdin, stdout or
stderr are redirected, but the check is only done at
the start of the build and doesn't catch when individual
build commands use redirection. When stdin is redirected
it will cause the debug shell to exit immediately, causing
and endless loop. Thus, save the stdin/our/err file handles
and restore them before invoking the debug shell.

Signed-off-by: Johannes Stezenbach <js@sig21.net>
Message-Id: <20121030102225.GA8303@sig21.net>
Patchwork-Id: 195409
yann@2834
     1
#!/bin/sh
yann@2834
     2
set -e
yann@2834
     3
yann@2834
     4
printf "Running autoconf...\n"
yann@2834
     5
autoconf -Wall --force
yann@2834
     6
yann@2834
     7
printf "Done. You may now run:\n    ./configure\n"