In case anyone else is upgrading to AIX 4.3, I found the answer on Tivoli's
support site:
APAR NUMBER: IY00026 INTRAN
Desc: When sourcing /etc/Tivoli/setup_env.sh in .profile CDE fails to start.
>From setup_env.sh:
LIBPATH=" {LIBDIR}:/usr/lib {LIBPATH:+: LIBPATH}"
.
A workaround is to change it to:
LIBPATH="/usr/lib: {LIBDIR} {LIBPATH:+: LIBPATH}"
.
"Ken Garst." wrote:
> Here is the short script that I run in my .profile:
>
> #Tivoli startup
> if [ -f /etc/Tivoli/setup_env.sh ] ; then
> . /etc/Tivoli/setup_env.sh
> fi
>
> Note the space between the period and the /etc/Tivoli/setup_env.sh command in
> the next to last line.
>
> Regards,
> ken
> kgarst@giantofmaryland.com
|