diff options
author | Bradley Sepos <[email protected]> | 2020-07-22 18:43:37 -0400 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2020-07-22 18:43:37 -0400 |
commit | b85d8d46d976c70136d31d3105a701cf2e944823 (patch) | |
tree | f93884b5ff199487e1d0190e2524520cbd66bc9e | |
parent | 73745130917437c6e522d232b37136a6df73a678 (diff) |
make: Fix mingw pthread conditional in configure.py.
-rw-r--r-- | make/configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/configure.py b/make/configure.py index ab39323ed..a2a0b8db5 100644 --- a/make/configure.py +++ b/make/configure.py @@ -2029,7 +2029,7 @@ int main() doc.addBlank() if not dlfcn.fail: doc.add( 'HAS.dlfcn', 1 ) - elif not pthread.fail: + if not pthread.fail: doc.add( 'HAS.pthread', 1 ) if not bz2.fail: doc.add( 'HAS.bz2', 1 ) |