On Wed, Dec 7, 2011 at 3:10 AM, Brian Gernhardt <[email protected]> wrote: > 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.
The vim stuff has to go in wherever vim wants it, but configure should have an option to disable that since some of us are virulently anti-vim (oh, and you need sudo/root to write to /etc). > > 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 Looks reasonable. > > 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. I don't see where it is used with multiple files, sounds like your make is non-standard and is trying to use one command to do all targets rather than running the command for each target. Cheers Lex -- 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.
