I was installing asciidoc on some Solaris machines and I noticed the
following problems:

1) No matter what your DESTDIR or prefix, it attempts to install in /
etc/vim.  I was installing into my personal directory and this caused
errors.

2) My version of sh didn't recognize ! in the install-vim target.  I
solved it by re-writing the following:

if ! test -d $$d; then continue; fi

to

if test -d $$d; then true; else continue; fi

3) The install-sh provided by asciidoc itself can't install more than
one file at at time, but is constantly used that way.  I fixed this by
wrapping every use of INSTALL_PROG and INSTALL_DATA in a for loop.

~~ Brian Gernhardt

-- 
You received this message because you are subscribed to the Google Groups 
"asciidoc" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/asciidoc?hl=en.

Reply via email to