Hi,
There is a problem with the eieio (0.17beta3) and speedbar (0.14beta1)
Makefiles under Solaris 7:
There is a set of quotes needed in the Bourne shell script fragment
within the Makefiles.
Below is an example:
@if test ! -z "${LOADPATH}" ; then\
for loadpath in ${LOADPATH}; do \ <======= Quotes needed
here around the variable
echo -n "(add-to-list 'load-path \"$$loadpath\")" >>
$@-compile-script; \
done;\
fi
Here is what I changed it to:
@if test ! -z "${LOADPATH}" ; then\
for loadpath in "${LOADPATH}"; do \
echo -n "(add-to-list 'load-path \"$$loadpath\")" >>
$@-compile-script; \
done;\
fi
Apparently the Bourne shell on Solaris 7 scans everything even if
LOADPATH is zero.
Thanks in advance,
David