]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Enable --localedir to set message catalog directory (Bug 14259)
authorCarlos O'Donell <carlos@systemhalted.org>
Thu, 25 Feb 2016 01:06:04 +0000 (20:06 -0500)
committerCarlos O'Donell <carlos@systemhalted.org>
Thu, 25 Feb 2016 01:06:04 +0000 (20:06 -0500)
In 1999 the project split "localedir" into "localedir" (path to compiled
locale archives) and "msgcatdir" (path to message catalogs). This
predates the 2002 change in the GNU Coding Standard to document the use
of "localedir" for the path to the message catalogs. It appears that
newlib, gcc, and several other projects also used "msgcatdir" at one
point or another in the past, and so it is in line with historical
precedent that glibc would also use "msgcatdir." However, given that the
GNU Coding Standard uses "localedir", we will switch to that for
consistency as a GNU project. Previous uses of --localdir didn't work
anyway (see bug 14259).

I am committing this patch in the understanding that nobody would object
to fixing #14259 as part of aligning our variable usage to the GNU
Coding Standard.

Given that previous "localedir" uses were converted to "complocaledir"
by [1], we can now convert "msgcatdir" to "localedir" and complete the
transition. With an addition to config.make.in we also fix bug 14259 and
allow users to specify the locale dependent data directory with
"--localedir" at configure time. There is still no way to control at
configure time the location of the *compiled* locale directory.

Tested on x86_64 with no regressions.

Tested using "--localedir" to specify alternate locale dependent data
directory and verified with "make install DESTDIR=/tmp/glibc".

[1] 90fe682d3067163aa773feecf497ef599429457a

ChangeLog
Makeconfig
catgets/Makefile
config.make.in
elf/Makefile
intl/Makefile
locale/Makefile
po/Makefile

index d83bf39870754b740e148ce87fb6dc043d7f7048..550e34ad848f7c25f3c1c03234fc52bd163dd381 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,18 @@
 2016-02-24  Carlos O'Donell  <carlos@redhat.com>
 
+       [BZ #14259]
+       * Makeconfig: Rename msgcatdir to localedir.
+       Rename inst_msgcatdir to inst_localedir.
+       * catgets/Makefile (catgets-CPPFLAGS): Use localedir.
+       * config.make.in: Add localedir.
+       * elf/Makefile ($(objpfx)sotruss): Use localedir.
+       (ldd-rewrite): Likewise.
+       * intl/Makefile: Rename inst_msgcatdir to inst_localedir.
+       (install-others): Use inst_localedir.
+       (CPPFLAGS): Use localedir.
+       * locale/Makefile (locale-CPPFLAGS): Likewise.
+       * po/Makefile (mo-installed): Use inst_localedir.
+
        [BZ #19575]
        * localedata/charmaps/GB18030: Update comments regarding PAU to
        non-PUA mappings.
index 87a22e88bed375d073663063dd4a93444d72ba25..901e253453e769883e65f6118993c7c1fb0b6736 100644 (file)
@@ -199,10 +199,10 @@ inst_complocaledir = $(install_root)$(complocaledir)
 
 # Where to install the message catalog data files (which are
 # machine-independent).
-ifndef msgcatdir
-msgcatdir = $(datadir)/locale
+ifndef localedir
+localedir = $(datadir)/locale
 endif
-inst_msgcatdir = $(install_root)$(msgcatdir)
+inst_localedir = $(install_root)$(localedir)
 
 # Where to install the locale charmap source files.
 ifndef i18ndir
index 0c6ac7992328ad06b21a9200b953fbe1bf8d031b..053b032dc82a80f59cbf0a75d79afb74c1504479 100644 (file)
@@ -47,7 +47,7 @@ include ../Rules
 
 $(objpfx)gencat: $(gencat-modules:%=$(objpfx)%.o)
 
-catgets-CPPFLAGS := -DNLSPATH='"$(msgcatdir)/%L/%N:$(msgcatdir)/%L/LC_MESSAGES/%N:$(msgcatdir)/%l/%N:$(msgcatdir)/%l/LC_MESSAGES/%N:"'
+catgets-CPPFLAGS := -DNLSPATH='"$(localedir)/%L/%N:$(localedir)/%L/LC_MESSAGES/%N:$(localedir)/%l/%N:$(localedir)/%l/LC_MESSAGES/%N:"'
 
 generated += de.msg test1.cat test1.h test2.cat test2.h sample.SJIS.cat \
             test-gencat.h
index 05ed6eca4b877e3869c08b717555f88276ce6c12..95c6f3687657d90e314abcba89fc780c60a4c429 100644 (file)
@@ -20,6 +20,7 @@ infodir = @infodir@
 includedir = @includedir@
 datarootdir = @datarootdir@
 localstatedir = @libc_cv_localstatedir@
+localedir = @localedir@
 
 # Should we use and build ldconfig?
 use-ldconfig = @use_ldconfig@
index 63a535502c15e32eb4f21feaefa3cbf5be6d8afa..2aacedfd21eee4a7b799f010d2d8dce412890fbc 100644 (file)
@@ -105,7 +105,7 @@ $(objpfx)sotruss-lib.so: $(common-objpfx)libc.so $(objpfx)ld.so \
 $(objpfx)sotruss: sotruss.sh $(common-objpfx)config.make
        sed -e 's%@BASH@%$(BASH)%g' \
            -e 's%@VERSION@%$(version)%g' \
-           -e 's%@TEXTDOMAINDIR@%$(msgcatdir)%g' \
+           -e 's%@TEXTDOMAINDIR@%$(localedir)%g' \
            -e 's%@PREFIX@%$(prefix)%g' \
            -e 's|@PKGVERSION@|$(PKGVERSION)|g' \
            -e 's|@REPORT_BUGS_TO@|$(REPORT_BUGS_TO)|g' \
@@ -436,7 +436,7 @@ ldd-rewrite = -e 's%@RTLD@%$(rtlddir)/$(rtld-installed-name)%g' \
              -e 's|@PKGVERSION@|$(PKGVERSION)|g' \
              -e 's|@REPORT_BUGS_TO@|$(REPORT_BUGS_TO)|g' \
              -e 's%@BASH@%$(BASH)%g' \
-             -e 's%@TEXTDOMAINDIR@%$(msgcatdir)%g'
+             -e 's%@TEXTDOMAINDIR@%$(localedir)%g'
 
 ifeq ($(ldd-rewrite-script),no)
 define gen-ldd
index 4ef9198410a485ea024eb83d7bbc2b7fd5814760..96183b211eed0dd1aa045a43506222408f82e64d 100644 (file)
@@ -36,7 +36,7 @@ tests = tst-ngettext
 
 before-compile += $(objpfx)msgs.h
 
-install-others = $(inst_msgcatdir)/locale.alias
+install-others = $(inst_localedir)/locale.alias
 
 generated += msgs.h mtrace-tst-gettext.out tst-gettext.mtrace
 generated-dirs += domaindir localedir
@@ -149,9 +149,9 @@ $(objpfx)tst-gettext4.out: $(objpfx)tst-gettext.out
 $(objpfx)tst-gettext5.out: $(objpfx)tst-gettext.out
 $(objpfx)tst-gettext6.out: $(objpfx)tst-gettext.out
 
-CPPFLAGS += -D'LOCALEDIR="$(msgcatdir)"' \
-           -D'LOCALE_ALIAS_PATH="$(msgcatdir)"'
+CPPFLAGS += -D'LOCALEDIR="$(localedir)"' \
+           -D'LOCALE_ALIAS_PATH="$(localedir)"'
 BISONFLAGS = --yacc --name-prefix=__gettext --output
 
-$(inst_msgcatdir)/locale.alias: locale.alias $(+force)
+$(inst_localedir)/locale.alias: locale.alias $(+force)
        $(do-install)
index 22e0c856bd0ee9a960241a11641b7f728893fcb7..c5379e626065e439d7a9b30dbe38a81cb48e607d 100644 (file)
@@ -85,7 +85,7 @@ localepath = "$(complocaledir):$(i18ndir)"
 # of the list instead of the tail, where CPPFLAGS-$(lib) gets added.
 # We need it before the standard -I's to see programs/config.h first.
 locale-CPPFLAGS = -DCOMPLOCALEDIR='"$(complocaledir)"' \
-                 -DLOCALE_ALIAS_PATH='"$(msgcatdir)"' \
+                 -DLOCALE_ALIAS_PATH='"$(localedir)"' \
                  -Iprograms
 
 CPPFLAGS-locale-programs = -DLOCALE_PATH='$(localepath)' \
index 35851269449403df030c9b0ddedd14b9286255bf..df053d8a0bdfa8c8823873846db13127f3a772bd 100644 (file)
@@ -39,7 +39,7 @@ endif
 domainname = libc
 
 # Pattern for where message catalog object for language % gets installed.
-mo-installed = $(inst_msgcatdir)/%/LC_MESSAGES/$(domainname).mo
+mo-installed = $(inst_localedir)/%/LC_MESSAGES/$(domainname).mo
 
 # Files to install: a $(domainname).mo file for each language.
 install-others = $(LINGUAS:%=$(mo-installed))