aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2014-01-20 02:05:49 +0000
committerTimothy Gu <timothygu99@gmail.com>2014-01-20 02:05:49 +0000
commit29e7d7af41fe845eeabfd07c63f130fcef2cf741 (patch)
treeddad6db9abcfaa648cadba4f5122975234ebe08c
parent53c31d96e15eaf310dd2f82ff0fc0e1e9b6cb0bf (diff)
downloaddlfcn-win32-29e7d7af41fe845eeabfd07c63f130fcef2cf741.tar.gz
dlfcn-win32-29e7d7af41fe845eeabfd07c63f130fcef2cf741.tar.bz2
dlfcn-win32-29e7d7af41fe845eeabfd07c63f130fcef2cf741.zip
Make configure return 0 on success
-rwxr-xr-xconfigure4
1 files 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"
186echo "strip: $strip" 186echo "strip: $strip"
187echo "static: $static" 187echo "static: $static"
188echo "shared: $shared" 188echo "shared: $shared"
189enabled shared && { 189if enabled shared; then
190 echo "msvc: $msvc"; 190 echo "msvc: $msvc";
191 echo "strip: $stripping"; 191 echo "strip: $stripping";
192} 192fi