From 08959f83d0816fa890452550ea2f0dbd7ebf1205 Mon Sep 17 00:00:00 2001 From: "Ahmed S. Darwish" Date: Sat, 19 Sep 2015 01:59:02 +0200 Subject: [PATCH] build-sys: bootstrap.sh: Do a make only if configure has succeeded Otherwise the important configure script error messages get buried by the "make clean" output. Signed-off-by: Ahmed S. Darwish --- bootstrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index c9a083c..187abaa 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -50,6 +50,6 @@ autopoint --force AUTOPOINT='intltoolize --automake --copy' autoreconf --force --install --verbose if test "x$NOCONFIGURE" = "x"; then - CFLAGS="$CFLAGS -g -O0" ./configure --sysconfdir=/etc --localstatedir=/var --enable-force-preopen "$@" - make clean + CFLAGS="$CFLAGS -g -O0" ./configure --sysconfdir=/etc --localstatedir=/var --enable-force-preopen "$@" && \ + make clean fi -- 2.7.4