diff options
-rw-r--r-- | src/tools/msvc/gendef.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/msvc/gendef.pl b/src/tools/msvc/gendef.pl index 8ef0422df9d..247cff0cac3 100644 --- a/src/tools/msvc/gendef.pl +++ b/src/tools/msvc/gendef.pl @@ -27,7 +27,7 @@ while (<$ARGV[0]/*.obj>) print "."; system("dumpbin /symbols /out:symbols.out $_ >NUL") && die "Could not call dumpbin"; - open(F, "<symbols.out") || die "Could not open symbols.out for $_\n"; + open(F, "<symbols.out") || die "Could not open symbols.out for $_: $!\n"; while (<F>) { s/\(\)//g; |