tueda / makefile4latex

A GNU Makefile for typesetting LaTeX documents.
MIT License
26 stars 3 forks source link

Aspell configuration file per project #24

Open tueda opened 3 years ago

tueda commented 3 years ago

According to the GNU Aspell (0.60.9-git) manual, Aspell loads a global configuration file and also a configuration file per user, but not a configuration file per project (it doesn't read any configuration files in the current working directory unless explicitly specified). Give an option --conf <file> to Aspell when .aspell.conf or aspell.conf is found in the current directory.

tueda commented 3 years ago

A workaround found:

export ASPELL_CONF = conf $(abspath .aspell.conf)

or

ASPELL_OPT += --conf $(abspath .aspell.conf)