From: Misha Brukman Date: Mon, 24 Nov 2003 05:31:57 +0000 (+0000) Subject: I'm gonna be picky and say we don't really need that trailing slash "lib/" X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0d2459a49f4f85766552a00e604d12c02c0353f5;p=oota-llvm.git I'm gonna be picky and say we don't really need that trailing slash "lib/" git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10196 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/gccld/gccld.cpp b/tools/gccld/gccld.cpp index 67db7047798..176679b02ff 100644 --- a/tools/gccld/gccld.cpp +++ b/tools/gccld/gccld.cpp @@ -285,7 +285,7 @@ int main(int argc, char **argv, char **envp) { // gcc accepts -l 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::iterator libc =