diff options
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/ChangeLog | 4 | ||||
-rw-r--r-- | nptl/Makefile | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog index a1d0f11d4b..c01177ed83 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,7 @@ +2014-02-28 Roland McGrath <roland@hack.frob.com> + + * Makefile (generated-dirs): Use += rather than =. + 2014-02-26 Joseph Myers <joseph@codesourcery.com> * Makefile: Include Makeconfig immediately after defining subdir. diff --git a/nptl/Makefile b/nptl/Makefile index d568e5d34d..320facf8ea 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -338,7 +338,7 @@ $(objpfx)multidir.mk: $(common-objpfx)config.make crti-objs := crti.o crtn-objs := crtn.o ifneq (,$(patsubst .,,$(multidir))) -generated-dirs := $(firstword $(subst /, , $(multidir))) +generated-dirs += $(firstword $(subst /, , $(multidir))) crti-objs += $(multidir)/crti.o crtn-objs += $(multidir)/crtn.o $(objpfx)$(multidir): |