From f7973bbef0a4206f5597920f5584e5a602ef9d08 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Fri, 26 Apr 2019 21:22:42 +1000 Subject: [PATCH] Removed unused file --- winbuild/fixproj.py | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 winbuild/fixproj.py diff --git a/winbuild/fixproj.py b/winbuild/fixproj.py deleted file mode 100644 index 9b5203fb81f..00000000000 --- a/winbuild/fixproj.py +++ /dev/null @@ -1,8 +0,0 @@ -import sys - -with open(sys.argv[1], 'r') as fd: - content = '\n'.join(line.strip() for line in fd if line.strip()) -if len(sys.argv) == 3: - content = content.replace('Win32', sys.argv[2]).replace('x64', sys.argv[2]) -with open(sys.argv[1], 'w') as fd: - fd.write(content)