/* we set a nicer ld library path specifically for bash -- a full
one makes anaconda unhappy */
-#if defined(__x86_64__) || defined(__s390x__) || defined(__ppc64__)
+#if defined(__x86_64__) || defined(__s390x__) || defined(__ppc64__) || (defined(__sparc__) && defined(__arch64__))
"LD_LIBRARY_PATH=/lib64:/usr/lib64:/lib:/usr/lib",
#else
"LD_LIBRARY_PATH=/lib:/usr/lib",
--
1.7.0
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
02-26-2010, 08:24 PM
Chris Lumens
make sure sparc64 has lib64 paths set
> diff --git a/loader/init.c b/loader/init.c
> index d941f86..f2893b1 100644
> --- a/loader/init.c
> +++ b/loader/init.c
> @@ -85,7 +85,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(__ppc64__)
> +#if defined(__x86_64__) || defined(__s390x__) || defined(__ppc64__) || (defined(__sparc__) && defined(__arch64__))
> "LD_LIBRARY_PATH=/lib64:/usr/lib64:/lib:/usr/lib",
> #else
> "LD_LIBRARY_PATH=/lib:/usr/lib",
This won't apply to master, because s/__ppc64__/__powerpc64__/. But
that won't be a problem until you're ready to tackle F13.
- Chris
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
/* 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",
--
1.7.0
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list