mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
80c2334e14
Don't install man pages, help and hint files if mc is built with --disable-nls key. Thanks Max Khon <fjoe samodelkin net> for the original patch. Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
15 lines
367 B
Makefile
15 lines
367 B
Makefile
HINTFILE = mc.hint
|
|
HINTFILES_LANG = \
|
|
mc.hint.cs mc.hint.es mc.hint.hu mc.hint.it mc.hint.nl \
|
|
mc.hint.pl mc.hint.ru mc.hint.sr mc.hint.uk mc.hint.zh
|
|
|
|
hintdir = $(pkgdatadir)/hints
|
|
|
|
hint_DATA = $(HINTFILE)
|
|
if USE_NLS
|
|
hint_DATA += $(HINTFILES_LANG)
|
|
endif
|
|
|
|
# Files processed by configure don't need to be here
|
|
EXTRA_DIST = $(HINTFILE) $(HINTFILES_LANG)
|