"Douglas Kosovic" <[email protected]> wrote:
> This reminded me of a bug report I was received with the AGTk 2.12 Fedora
> RPMs I did previously. Some people were resetting LD_LIBRARY_PATH in their
> login script and therefore not finding the required globus-accessgrid
shared
> libraries.
Correction, the real solution involved adding the following line:
/sbin/ldconfig ${GLOBUS_LOCATION}/lib
to /etc/profile.d/globus.csh and /etc/profile.d/globus.sh
Adding /sbin/ldconfig in the post and postun steps of the globus RPM spec
file wasn't as important:
----
%post
GLOBUS_LOCATION=%{prefix}
/sbin/ldconfig $GLOBUS_LOCATION/lib
%postun
/sbin/ldconfig
----
Doug