bootstrap
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Tue May 08 18:31:10 2012 +0200 (2012-05-08)
changeset 2964 d48c03998dc1
permissions -rwxr-xr-x
scripts: fix catching failures

POSIX 1003.1-2008 does not say whether "set -e" should catch a sub-shell
that exits with !0 (it has a list of conditions to catch, but no list of
conditions not to catch, and this situation is not listed).

bash-3 does not catch such a failure, but bash-4 does. That why, on my
Squeeze system I did not see the issue, while Thomas did on is Lenny chroot.

Reported-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
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"