diff options
Diffstat (limited to 'localedata')
-rw-r--r-- | localedata/ChangeLog | 6 | ||||
-rw-r--r-- | localedata/Makefile | 7 |
2 files changed, 8 insertions, 5 deletions
diff --git a/localedata/ChangeLog b/localedata/ChangeLog index 8bd381fbee..43bd3bf17b 100644 --- a/localedata/ChangeLog +++ b/localedata/ChangeLog @@ -1,3 +1,9 @@ +2011-11-17 Ulrich Drepper <drepper@gmail.com> + + * Makefile (charmaps): Not need to filter out any of the VC + directories. + (locales): Likewise. + 2011-11-11 Ulrich Drepper <drepper@gmail.com> [BZ #13147] diff --git a/localedata/Makefile b/localedata/Makefile index 51c61a7700..4c4acd34f9 100644 --- a/localedata/Makefile +++ b/localedata/Makefile @@ -23,13 +23,10 @@ subdir := localedata all: # Make this the default target; it will be defined in Rules. # List with all available character set descriptions. -charmaps := $(filter-out $(addprefix charmaps/, CVS RCS SCCS %~), \ - $(wildcard charmaps/[A-I]*) \ - $(wildcard charmaps/[J-Z]*)) +charmaps := $(wildcard charmaps/[A-I]*) $(wildcard charmaps/[J-Z]*) # List with all available character set descriptions. -locales := $(filter-out $(addprefix locales/, CVS RCS SCCS %~), \ - $(wildcard locales/*)) +locales := $(wildcard locales/*) subdir-dirs = tests-mbwc |