summaryrefslogtreecommitdiffstats
path: root/llvm/tools/gccld/gccld.cpp
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2003-11-24 05:31:57 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2003-11-24 05:31:57 +0000
commitc10bf39a7d455df01ed59a6f8c2be76661952767 (patch)
treea41e6abae81d15250bf35e195dc7a92e24af2e55 /llvm/tools/gccld/gccld.cpp
parent44a562bba6c07874e8306506477c8d5ecb2a573b (diff)
downloadbcm5719-llvm-c10bf39a7d455df01ed59a6f8c2be76661952767.tar.gz
bcm5719-llvm-c10bf39a7d455df01ed59a6f8c2be76661952767.zip
I'm gonna be picky and say we don't really need that trailing slash "lib/"
llvm-svn: 10196
Diffstat (limited to 'llvm/tools/gccld/gccld.cpp')
-rw-r--r--llvm/tools/gccld/gccld.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/gccld/gccld.cpp b/llvm/tools/gccld/gccld.cpp
index 67db7047798..176679b02ff 100644
--- a/llvm/tools/gccld/gccld.cpp
+++ b/llvm/tools/gccld/gccld.cpp
@@ -285,7 +285,7 @@ int main(int argc, char **argv, char **envp) {
// 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 =
OpenPOWER on IntegriCloud