Commit 29e7d7af41fe845eeabfd07c63f130fcef2cf741

Timothy Gu 2014-01-20T02:05:49

Make configure return 0 on success

1
2
3
4
5
6
7
8
9
10
11
12
13
14
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