Re: bug: solaris build does not use --prefix properly
James Lee <[email protected]>
| Newsgroups | gmane.comp.gnu.aspell.devel |
|---|---|
| Message-ID | <[email protected]> |
On 30/09/05, 17:57:06, Tyler Ross <[email protected]> wrote regarding [aspell-devel] bug: solaris build does not use --prefix properly: > I believe I have found a bug in the solaris build of aspell. To repro: > - untar aspell (e.g. 0.60.3) > - ./configure --prefix=/some/nonstandard/dir > - make > - make install > - cd /some/nonstandard/dir/bin > - ./aspell dump config dict-dir > result: > /usr/local/lib/aspell-0.60 > expected: > /some/nonstandard/dir/aspell-0.60 This works for me, all the way to "aspell dump config dict-dir". Start by inspecting the value of prefix in the Makefiles: $ ./configure --prefix=/MYOWNPREFIX ... $ find . -name Makefile | xargs grep MYOWNPREFIX ... James.