summaryrefslogtreecommitdiffstats
path: root/Tools/Scripts/generate-win32-export-forwards
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/Scripts/generate-win32-export-forwards')
-rwxr-xr-xTools/Scripts/generate-win32-export-forwards2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/Scripts/generate-win32-export-forwards b/Tools/Scripts/generate-win32-export-forwards
index a160abb18..37375b77b 100755
--- a/Tools/Scripts/generate-win32-export-forwards
+++ b/Tools/Scripts/generate-win32-export-forwards
@@ -28,7 +28,7 @@ import sys
import re
def exportForwardsForLibrary(library):
- dumpBin = subprocess.Popen("dumpbin /directives " + library, stdout=subprocess.PIPE, universal_newlines=True)
+ dumpBin = subprocess.Popen(["dumpbin.exe", "-directives", library], stdout=subprocess.PIPE, universal_newlines=True)
output = dumpBin.communicate()[0]
return output