diff options
Diffstat (limited to 'Makeconfig')
-rw-r--r-- | Makeconfig | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Makeconfig b/Makeconfig index f001982496..620f23d991 100644 --- a/Makeconfig +++ b/Makeconfig @@ -143,7 +143,7 @@ includedir = $(exec_prefix)/include endif # Where to install machine-independent data files. -# These are the timezone database, and eventually the locale database. +# These are the timezone database, and the locale database. ifndef datadir datadir = $(prefix)/share endif @@ -153,6 +153,18 @@ ifndef zonedir zonedir = $(datadir)/zoneinfo endif +# Where to install the locale data files (which are machine-independent). +ifndef localedir +localedir = $(datadir)/locale +endif + +# Where to install the locale charmap and message catalog files (which are +# machine-independent). +ifndef nlsdir +nlsdir = $(datadir)/nls +endif + + # Where to install programs. ifndef bindir bindir = $(exec_prefix)/bin |