commit | e4083418542a74570d20e1f476c3a5b1468a22e7 | [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 | 165cb212e95679ee945efcff3248646201792cde | |
parent | 527ac0a1c7e8df79acdb2a4ceb4c664c380286d2 [diff] [blame] |
Fix VC++ compilation errors llvm-svn: 18953
diff --git a/llvm/lib/System/Path.cpp b/llvm/lib/System/Path.cpp index 1c2b00e6..dd0f275 100644 --- a/llvm/lib/System/Path.cpp +++ b/llvm/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(); }