diff options
author | Timothy Gu <timothygu99@gmail.com> | 2014-01-20 02:05:49 +0000 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2014-01-20 02:05:49 +0000 |
commit | 29e7d7af41fe845eeabfd07c63f130fcef2cf741 (patch) | |
tree | ddad6db9abcfaa648cadba4f5122975234ebe08c | |
parent | 53c31d96e15eaf310dd2f82ff0fc0e1e9b6cb0bf (diff) | |
download | dlfcn-win32-29e7d7af41fe845eeabfd07c63f130fcef2cf741.tar.gz dlfcn-win32-29e7d7af41fe845eeabfd07c63f130fcef2cf741.tar.bz2 dlfcn-win32-29e7d7af41fe845eeabfd07c63f130fcef2cf741.zip |
Make configure return 0 on success
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -186,7 +186,7 @@ echo "ranlib: $ranlib" | |||
186 | echo "strip: $strip" | 186 | echo "strip: $strip" |
187 | echo "static: $static" | 187 | echo "static: $static" |
188 | echo "shared: $shared" | 188 | echo "shared: $shared" |
189 | enabled shared && { | 189 | if enabled shared; then |
190 | echo "msvc: $msvc"; | 190 | echo "msvc: $msvc"; |
191 | echo "strip: $stripping"; | 191 | echo "strip: $stripping"; |
192 | } | 192 | fi |