summaryrefslogtreecommitdiff
path: root/tools/llvm-ld
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2004-12-22 01:37:33 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2004-12-22 01:37:33 +0000
commit81417b631ac903fed0e31ff009a42f24a539afb7 (patch)
tree0d128c3f324b810dafca4c4599b33a8b16df2830 /tools/llvm-ld
parent77f5530ebefcc4172f7bce49bb5960ebbad0095d (diff)
downloadllvm-81417b631ac903fed0e31ff009a42f24a539afb7.tar.gz
llvm-81417b631ac903fed0e31ff009a42f24a539afb7.tar.bz2
llvm-81417b631ac903fed0e31ff009a42f24a539afb7.tar.xz
Fix the Win32 build
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19088 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-ld')
-rw-r--r--tools/llvm-ld/llvm-ld.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvm-ld/llvm-ld.cpp b/tools/llvm-ld/llvm-ld.cpp
index bc088c27c8..ebc9e25cf3 100644
--- a/tools/llvm-ld/llvm-ld.cpp
+++ b/tools/llvm-ld/llvm-ld.cpp
@@ -315,7 +315,7 @@ static void EmitShellScript(char **argv) {
std::cerr << "Could not find llvm-stub.exe executable!\n";
exit(1);
}
- sys::CopyFile(sys::PatheOutputFilename), sys::Path(llvmstub));
+ sys::CopyFile(sys::Path(OutputFilename), sys::Path(llvmstub));
return;
#endif