diff options
author | John Stebbins <[email protected]> | 2019-01-19 11:12:07 -0800 |
---|---|---|
committer | John Stebbins <[email protected]> | 2019-01-19 11:12:07 -0800 |
commit | 8c7c73ca5fdc8ba448b5074326454d0dad9067f7 (patch) | |
tree | 2dfb48a2fc588a2fc0958c3f386393c3f45c7380 /make | |
parent | 0917684f5e3241a41e1b3fd26fca227073268f21 (diff) |
configure: fix conftest turds
Diffstat (limited to 'make')
-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 |