summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDennis Gilmore <dennis@ausil.us>2010-02-24 16:41:45 -0600
committerDennis Gilmore <dennis@ausil.us>2010-03-05 15:27:05 -0600
commit31d05ccf5438e3cb71fd0b8c6c985c084101131e (patch)
tree13404ef07e6b59bad61adeaf4906273be1f7bab2
parentb7bc7fcf1197e23e2ec4c24e51f349345fc1b7cf (diff)
downloadanaconda-31d05ccf5438e3cb71fd0b8c6c985c084101131e.tar.gz
anaconda-31d05ccf5438e3cb71fd0b8c6c985c084101131e.tar.xz
anaconda-31d05ccf5438e3cb71fd0b8c6c985c084101131e.zip
sparc64 is a lib64 arch
make sure sparc64 has lib64 paths set that same as other 64 bit arches that use lib64
-rw-r--r--loader/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/init.c b/loader/init.c
index ec4ce734c..5aec2a32a 100644
--- a/loader/init.c
+++ b/loader/init.c
@@ -87,7 +87,7 @@ 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(__powerpc64__)
+#if defined(__x86_64__) || defined(__s390x__) || defined(__powerpc64__) || (defined(__sparc__) && defined(__arch64__))
"LD_LIBRARY_PATH=/lib64:/usr/lib64:/lib:/usr/lib",
#else
"LD_LIBRARY_PATH=/lib:/usr/lib",