diff options
| author | Andreas Schwab <schwab@linux-m68k.org> | 2026-05-31 11:06:55 +0200 |
|---|---|---|
| committer | Andreas Schwab <schwab@linux-m68k.org> | 2026-05-31 11:08:51 +0200 |
| commit | 75153f7b7693b8980e4b383fbcbcbb5600fdd076 (patch) | |
| tree | bc458bcafae551f1efbcc661b5d24efa8ff67926 | |
| parent | 64f4ce7b2d9d8bf8c291b8b6993f9b4ced51814c (diff) | |
Fix clash with locale variable
LANG is a locale variable, use INFO_LANG instead.
* doc/misc/Makefile.in (INFO_LANG): Renamed from LANG, all uses
changed.
* doc/translations/fr/misc/ses-fr.texi: Use INFO_LANG instead of
LANG.
| -rw-r--r-- | doc/misc/Makefile.in | 12 | ||||
| -rw-r--r-- | doc/translations/fr/misc/ses-fr.texi | 6 |
2 files changed, 9 insertions, 9 deletions
diff --git a/doc/misc/Makefile.in b/doc/misc/Makefile.in index bb09f15f65a..2cf4cf26eea 100644 --- a/doc/misc/Makefile.in +++ b/doc/misc/Makefile.in @@ -63,21 +63,21 @@ INSTALL_DATA = @INSTALL_DATA@ MAKEINFO = @MAKEINFO@ MAKEINFO_OPTS = --force -I$(emacsdir) -ifeq ($(LANG),) -LANG:=default +ifeq ($(INFO_LANG),) +INFO_LANG:=default else ifeq ($(wildcard $(srcdir)/../translations/$(LANG)/info_common.mk),) -LANG:=default +INFO_LANG:=default endif -lang_suffix:=$(filter-out -default,-$(LANG)) -lang_subdir:=$(filter-out ../translations/default/misc/,../translations/$(LANG)/misc/) +lang_suffix:=$(filter-out -default,-$(INFO_LANG)) +lang_subdir:=$(filter-out ../translations/default/misc/,../translations/$(INFO_LANG)/misc/) ## On MS Windows, efaq-w32; otherwise blank. DOCMISC_W32 = @DOCMISC_W32@ DOCMISC_W32_TARGET = efaq-w32 ## Info files to build and install on all platforms. -include $(srcdir)/../translations/$(LANG)/info_common.mk +include $(srcdir)/../translations/$(INFO_LANG)/info_common.mk ## Info files to install on current platform. INFO_INSTALL = $(INFO_COMMON) $(DOCMISC_W32) diff --git a/doc/translations/fr/misc/ses-fr.texi b/doc/translations/fr/misc/ses-fr.texi index 4e204ad94e5..9d17f174786 100644 --- a/doc/translations/fr/misc/ses-fr.texi +++ b/doc/translations/fr/misc/ses-fr.texi @@ -11,11 +11,11 @@ @syncodeindex ky cp @c %**end of header @c compiler info avec -@c make -C doc/misc ../../info/ses-fr.info LANG=fr +@c make -C doc/misc ../../info/ses-fr.info INFO_LANG=fr @c ou juste -@c make -C doc/misc ses LANG=fr +@c make -C doc/misc ses INFO_LANG=fr @c compiler pdf avec -@c make -C doc/misc ses-fr.pdf LANG=fr +@c make -C doc/misc ses-fr.pdf INFO_LANG=fr @copying Ce fichier documente @acronym{SES} : le tableur simple d’Emacs (Simple |
