diff options
Diffstat (limited to 'localedata')
-rw-r--r-- | localedata/ChangeLog | 4 | ||||
-rw-r--r-- | localedata/Makefile | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/localedata/ChangeLog b/localedata/ChangeLog index 2bd966dc1f..a7323054ba 100644 --- a/localedata/ChangeLog +++ b/localedata/ChangeLog @@ -1,3 +1,7 @@ +2014-02-28 Roland McGrath <roland@hack.frob.com> + + * Makefile (generated, generated-dirs): Use += rather than =. + 2014-02-26 Joseph Myers <joseph@codesourcery.com> * Makefile: Include Makeconfig immediately after defining subdir. diff --git a/localedata/Makefile b/localedata/Makefile index 881337452e..ad801b7e75 100644 --- a/localedata/Makefile +++ b/localedata/Makefile @@ -51,9 +51,9 @@ ld-test-srcs := $(addprefix tests/,$(addsuffix .cm,$(ld-test-names)) \ fmon-tests = n01y12 n02n40 n10y31 n11y41 n12y11 n20n32 n30y20 n41n00 \ y01y10 y02n22 y22n42 y30y21 y32n31 y40y00 y42n21 -generated := $(test-input) $(test-output) sort-test.out tst-locale.out \ +generated += $(test-input) $(test-output) sort-test.out tst-locale.out \ tst-mbswcs.out tst-leaks.mtrace mtrace-tst-leaks -generated-dirs := $(ld-test-names) tt_TT de_DE.437 \ +generated-dirs += $(ld-test-names) tt_TT de_DE.437 \ $(addprefix tstfmon_,$(fmon-tests)) \ ifeq ($(run-built-tests),yes) |