Eduards Cauna wrote:

> 3. While in /usr/local/lib/aspell/ I used command
> aspell --lang=lv create master ./lv < lv_wordlist

This creates "lv" in your current working directory.

> 4. It creates file "lv" which is not recognized by aspell with "aspell dump
> dicts".

By default, aspell looks for the dictionary file ("lv") in its
standard data directory, typically /usr/share/...something
You have to specify either

aspell --master=./lv

or tell aspell that it should use the current working directory:

aspell --dict-dir=. --master=lv dump master
or
aspell --dict-dir=. --lang=lv

or you could copy your master file ("lv") to the /usr/share/...
place.  Use "aspell dump config | grep data-dir" to find out which
directory that is.


-- 
  Lars Aronsson ([EMAIL PROTECTED])
  Aronsson Datateknik - http://aronsson.se/



_______________________________________________
Aspell-user mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/aspell-user

Reply via email to