summaryrefslogtreecommitdiffstats
path: root/loader2
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2006-06-30 19:27:35 +0000
committerJeremy Katz <katzj@redhat.com>2006-06-30 19:27:35 +0000
commitd21070b41154a04e4a19f77014417054c40784f3 (patch)
treed33434ddbe623b76a1abb376f7a5187fde78385e /loader2
parent0bb77891a3da824fadb1ee74203bd0f0968a6eb5 (diff)
downloadanaconda-d21070b41154a04e4a19f77014417054c40784f3.tar.gz
anaconda-d21070b41154a04e4a19f77014417054c40784f3.tar.xz
anaconda-d21070b41154a04e4a19f77014417054c40784f3.zip
2006-06-30 Jeremy Katz <katzj@redhat.com>
* loader2/init.c: Nuke non-existent paths from LD_LIBRARY_PATH
Diffstat (limited to 'loader2')
-rw-r--r--loader2/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/loader2/init.c b/loader2/init.c
index 2a40047c6..96335340a 100644
--- a/loader2/init.c
+++ b/loader2/init.c
@@ -81,9 +81,9 @@ char * env[] = {
/* we set a nicer ld library path specifically for bash -- a full
one makes anaconda unhappy */
#if defined(__x86_64__) || defined(__s390x__) || defined(__ppc64__)
- "LD_LIBRARY_PATH=/lib64:/usr/lib64:/usr/X11R6/lib64:/lib:/usr/lib:/usr/X11R6/lib",
+ "LD_LIBRARY_PATH=/lib64:/usr/lib64:/lib:/usr/lib",
#else
- "LD_LIBRARY_PATH=/lib:/usr/lib:/usr/X11R6/lib",
+ "LD_LIBRARY_PATH=/lib:/usr/lib",
#endif
"HOME=/",
"TERM=linux",