commit | ab68df02bc29045b9f02783518fbc7d0f23f56b7 | [log] [tgz] |
---|---|---|
author | Jeff Cohen <jeffc@jolt-lang.org> | Wed Dec 15 04:08:15 2004 +0000 |
committer | Jeff Cohen <jeffc@jolt-lang.org> | Wed Dec 15 04:08:15 2004 +0000 |
tree | 05f8435d3fa90d478337e8fd1915c39f0213dc6f | |
parent | 6af3d265261e24792b642cd476438cb072b19bbf [diff] [blame] |
Fix VC++ compilation errors git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18953 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/System/Path.cpp b/lib/System/Path.cpp index 1c2b00e..dd0f275 100644 --- a/lib/System/Path.cpp +++ b/lib/System/Path.cpp
@@ -26,8 +26,10 @@ Path Path::GetLLVMConfigDir() { Path result; +#ifdef LLVM_ETCDIR if (result.setDirectory(LLVM_ETCDIR)) return result; +#endif return GetLLVMDefaultConfigDir(); }