diff options
author | John Stebbins <[email protected]> | 2019-01-19 11:12:07 -0800 |
---|---|---|
committer | John Stebbins <[email protected]> | 2019-02-11 10:52:17 -0700 |
commit | ac9f08477d3faf1f3a0fcc048c3ce0e01f7c87fc (patch) | |
tree | 451f2f3e1104c43d6fae4fcc9daad7a8a2672b04 /make/configure.py | |
parent | c4ef709df1a5321213661d44ebc99aeaa903616e (diff) |
configure: fix conftest turds
(cherry picked from commit 8c7c73ca5fdc8ba448b5074326454d0dad9067f7)
Diffstat (limited to 'make/configure.py')
-rw-r--r-- | make/configure.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/make/configure.py b/make/configure.py index 1442f850e..c8bc712fe 100644 --- a/make/configure.py +++ b/make/configure.py @@ -398,6 +398,9 @@ class LDProbe( Action ): if not self.fail: try: os.remove( 'conftest.exe' ) + except: + pass + try: os.remove( 'conftest' ) except: pass |