[llvm-commits] CVS: llvm/tools/llvmc/Configuration.cpp st.in
Reid Spencer
reid at x10sys.com
Wed May 18 18:06:57 PDT 2005
Changes in directory llvm/tools/llvmc:
Configuration.cpp updated: 1.20 -> 1.21
st.in (r1.3) removed
---
Log message:
For PR514: http://llvm.cs.uiuc.edu/PR514 :
* Make sure the "etcdir" gets checked for configuration files so that
the installed location for config files is checked.
* Remove the st.in file (moved to projects/Stacker/tools/stkrc)
---
Diffs of the changes: (+1 -1)
Configuration.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/tools/llvmc/Configuration.cpp
diff -u llvm/tools/llvmc/Configuration.cpp:1.20 llvm/tools/llvmc/Configuration.cpp:1.21
--- llvm/tools/llvmc/Configuration.cpp:1.20 Wed May 18 19:52:29 2005
+++ llvm/tools/llvmc/Configuration.cpp Wed May 18 20:06:46 2005
@@ -562,7 +562,7 @@
if (!confFile.readable())
confFile.clear();
}
- if (!confFile.isEmpty()) {
+ if (confFile.isEmpty()) {
// Okay, try the LLVM installation directory
confFile = sys::Path::GetLLVMConfigDir();
confFile.appendFile(ftype);
More information about the llvm-commits
mailing list