From f51c8ea9de12ee498f41bd58038a6bb907e5f54b Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Sat, 11 Sep 2004 07:35:01 +0000 Subject: [PATCH] Correct the dynamic lib suffix on Darwin. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16293 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/System/Darwin/Path.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/System/Darwin/Path.cpp b/lib/System/Darwin/Path.cpp index 33d15d1fb97..1edb15450b7 100644 --- a/lib/System/Darwin/Path.cpp +++ b/lib/System/Darwin/Path.cpp @@ -45,7 +45,7 @@ Path::GetTemporaryDirectory() { std::string Path::GetDLLSuffix() { - return "dyld"; + return "dylib"; } } -- 2.34.1