From 29e7d7af41fe845eeabfd07c63f130fcef2cf741 Mon Sep 17 00:00:00 2001 From: Timothy Gu Date: Mon, 20 Jan 2014 02:05:49 +0000 Subject: Make configure return 0 on success --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index c15da2e..00f7043 100755 --- a/configure +++ b/configure @@ -186,7 +186,7 @@ echo "ranlib: $ranlib" echo "strip: $strip" echo "static: $static" echo "shared: $shared" -enabled shared && { +if enabled shared; then echo "msvc: $msvc"; echo "strip: $stripping"; -} +fi -- cgit v1.2.3-55-g6feb