diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-06-01 22:51:22 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-06-01 22:51:22 -0400 |
commit | 8b8c0daa2c5388b629e506f8fac486392f81c826 (patch) | |
tree | cc86f647ab1883237976a6659d77877ebca7b070 /fs/nls/Makefile | |
parent | 92a8956364233c3b6f930aa00c852c558b70a91e (diff) |
nls: fix (and rename) mac NLS table files and config options
The config options in the Kconfig file (with _CODEPAGE_ in the name)
didn't match the config option name in the Makefile (no _CODEPAGE_).
And both of them were of the hard-to-read MACXYZZY variety, which made
them hard to parse for normal humans: MACROMAN easily reads as "macro
man", not as "Mac Roman".
So rename the options to be consistent, and be NLS_MAC_xyzzy. Rename
the files to be mac-xyzzy.c too, and drop the "nls" part entirely (it's
already in the directory name).
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/nls/Makefile')
-rw-r--r-- | fs/nls/Makefile | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/fs/nls/Makefile b/fs/nls/Makefile index 5d74647c4462..8ae37c1b5249 100644 --- a/fs/nls/Makefile +++ b/fs/nls/Makefile | |||
@@ -42,14 +42,14 @@ obj-$(CONFIG_NLS_ISO8859_15) += nls_iso8859-15.o | |||
42 | obj-$(CONFIG_NLS_KOI8_R) += nls_koi8-r.o | 42 | obj-$(CONFIG_NLS_KOI8_R) += nls_koi8-r.o |
43 | obj-$(CONFIG_NLS_KOI8_U) += nls_koi8-u.o nls_koi8-ru.o | 43 | obj-$(CONFIG_NLS_KOI8_U) += nls_koi8-u.o nls_koi8-ru.o |
44 | obj-$(CONFIG_NLS_UTF8) += nls_utf8.o | 44 | obj-$(CONFIG_NLS_UTF8) += nls_utf8.o |
45 | obj-$(CONFIG_NLS_MACCELTIC) += nls_macceltic.o | 45 | obj-$(CONFIG_NLS_MAC_CELTIC) += mac-celtic.o |
46 | obj-$(CONFIG_NLS_MACCENTEURO) += nls_maccenteuro.o | 46 | obj-$(CONFIG_NLS_MAC_CENTEURO) += mac-centeuro.o |
47 | obj-$(CONFIG_NLS_MACCROATIAN) += nls_maccroatian.o | 47 | obj-$(CONFIG_NLS_MAC_CROATIAN) += mac-croatian.o |
48 | obj-$(CONFIG_NLS_MACCYRILLIC) += nls_maccyrillic.o | 48 | obj-$(CONFIG_NLS_MAC_CYRILLIC) += mac-cyrillic.o |
49 | obj-$(CONFIG_NLS_MACGAELIC) += nls_macgaelic.o | 49 | obj-$(CONFIG_NLS_MAC_GAELIC) += mac-gaelic.o |
50 | obj-$(CONFIG_NLS_MACGREEK) += nls_macgreek.o | 50 | obj-$(CONFIG_NLS_MAC_GREEK) += mac-greek.o |
51 | obj-$(CONFIG_NLS_MACICELAND) += nls_maciceland.o | 51 | obj-$(CONFIG_NLS_MAC_ICELAND) += mac-iceland.o |
52 | obj-$(CONFIG_NLS_MACINUIT) += nls_macinuit.o | 52 | obj-$(CONFIG_NLS_MAC_INUIT) += mac-inuit.o |
53 | obj-$(CONFIG_NLS_MACROMANIAN) += nls_macromanian.o | 53 | obj-$(CONFIG_NLS_MAC_ROMANIAN) += mac-romanian.o |
54 | obj-$(CONFIG_NLS_MACROMAN) += nls_macroman.o | 54 | obj-$(CONFIG_NLS_MAC_ROMAN) += mac-roman.o |
55 | obj-$(CONFIG_NLS_MACTURKISH) += nls_macturkish.o | 55 | obj-$(CONFIG_NLS_MAC_TURKISH) += mac-turkish.o |