diff options
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py index 846fe35..a9479bf 100755 --- a/configure.py +++ b/configure.py @@ -113,7 +113,7 @@ ar = 'ar' if platform == 'mingw': ar = 'i586-mingw32msvc-ar' n.rule('ar', - command=ar + ' crs $out $in', + command='rm -f $out && %s crs $out $in' % ar, description='AR $out') n.newline() |