diff options
-rw-r--r-- | nptl/ChangeLog | 4 | ||||
-rw-r--r-- | nptl/Makefile | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog index c6410804c7..a94c44e294 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,7 @@ +2003-05-14 Ulrich Drepper <drepper@redhat.com> + + * Makefile ($(objpfx)$(multidir)): Add rule to create the directory. + 2003-05-14 Jakub Jelinek <jakub@redhat.com> * Makefile (crti-objs, crtn-objs): New variables. diff --git a/nptl/Makefile b/nptl/Makefile index e231c9de08..a166ddab43 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -225,6 +225,8 @@ generated-dirs := $(firstword $(subst /, , $(multidir))) crti-objs += $(multidir)/crti.o crtn-objs += $(multidir)/crtn.o omit-deps += $(multidir)/crti $(multidir)/crtn +$(objpfx)$(multidir): + mkdir $@ endif extra-objs += $(crti-objs) $(crtn-objs) omit-deps += crti crtn |