[pulseaudio-commits] Branch 'next' - bootstrap.sh
Tanu Kaskinen
tanuk at kemper.freedesktop.org
Tue Sep 22 01:08:17 PDT 2015
bootstrap.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit c28d4c5c8abfe3695fe93dacc5a142bdb874993e
Author: Ahmed S. Darwish <darwish.07 at gmail.com>
Date: Sat Sep 19 01:59:02 2015 +0200
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 <darwish.07 at gmail.com>
diff --git a/bootstrap.sh b/bootstrap.sh
index 644d014..adaab46 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
More information about the pulseaudio-commits
mailing list