summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-12-24 13:53:07 +0100
committerCarl Hetherington <cth@carlh.net>2024-12-24 14:17:26 +0100
commit7f449b7d1bd94c7de1db09cf1cc7af674bd94f25 (patch)
treeedf24364e8730daa0cbf93841a9e5597db00cd86 /cscript
parentdda2955713196b56265bd23fd1c36d15a1eae6cc (diff)
Remove unnecessary distinction between 32-bit and 64-bit Windows.
Diffstat (limited to 'cscript')
-rw-r--r--cscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/cscript b/cscript
index 22be13a..22e91d9 100644
--- a/cscript
+++ b/cscript
@@ -4,7 +4,7 @@ def build(target, options):
if target.platform == 'linux':
cmd += ' --static'
elif target.platform == 'windows':
- cmd += f' --target-windows-{target.bits}'
+ cmd += f' --target-windows'
target.append_with_space('LIBS', '-lboost_system')
target.append_with_space('LIBS', '-lboost_filesystem')