diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-11-17 12:33:33 -0500 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-11-17 12:33:33 -0500 |
commit | 9d65ea3a9b83ac3961229ba296a7caf90abce68d (patch) | |
tree | a9b3c7ac1a524042d35fc22f296058456486d5b1 /localedata | |
parent | 5583a0862cf94f71cbcde91c4043a20af65facca (diff) | |
download | glibc-9d65ea3a9b83ac3961229ba296a7caf90abce68d.tar.gz |
Remove handling of VCs other then git
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 |