[llvm-commits] CVS: llvm/tools/gccld/gccld.cpp
Misha Brukman
brukman at cs.uiuc.edu
Sun Nov 23 23:33:00 PST 2003
Changes in directory llvm/tools/gccld:
gccld.cpp updated: 1.65 -> 1.66
---
Log message:
I'm gonna be picky and say we don't really need that trailing slash "lib/"
---
Diffs of the changes: (+1 -1)
Index: llvm/tools/gccld/gccld.cpp
diff -u llvm/tools/gccld/gccld.cpp:1.65 llvm/tools/gccld/gccld.cpp:1.66
--- llvm/tools/gccld/gccld.cpp:1.65 Sun Nov 23 23:29:42 2003
+++ llvm/tools/gccld/gccld.cpp Sun Nov 23 23:31:57 2003
@@ -285,7 +285,7 @@
// gcc accepts -l<lib> and implicitly searches /lib and /usr/lib.
LibPaths.push_back("/lib");
LibPaths.push_back("/usr/lib");
- LibPaths.push_back("/usr/X11R6/lib/");
+ LibPaths.push_back("/usr/X11R6/lib");
// We don't need to link in libc! In fact, /usr/lib/libc.so may not be a
// shared object at all! See RH 8: plain text.
std::vector<std::string>::iterator libc =
More information about the llvm-commits
mailing list