DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13238>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13238

make install, documentation





------- Additional Comments From [EMAIL PROTECTED]  2003-07-29 18:53 -------
The symbolic linking of the libraries is generating absolute paths instead of 
relative ones.   This can cause problems if you move /lib from the original 
install location or you want to repackage Xalan becase the actual library 
cannot be found.   In Makefile.in, in the lib target:
...      
$(LN) -s $(THISLIB) $(LIB_DIR)/$(LIBNAME)$(SHLIBSUFFIX)
...

Should be:
...
$(LN) -s $(LIB) $(LIB_DIR)/$(LIBNAME)$(SHLIBSUFFIX)
...

Reply via email to