diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-05-14 23:26:21 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-05-14 23:26:21 +0000 |
commit | 855dba3ccb9904806cb4b6ee3208056cac20521a (patch) | |
tree | 822d18ef06f18b194cbe08a9455a7367900d8dc2 /nptl | |
parent | 81f3ac4c9a003161d3396ea9322ca7330adedefa (diff) | |
download | glibc-855dba3ccb9904806cb4b6ee3208056cac20521a.tar.gz glibc-855dba3ccb9904806cb4b6ee3208056cac20521a.tar.xz glibc-855dba3ccb9904806cb4b6ee3208056cac20521a.zip |
Update.
2003-05-14 Ulrich Drepper <drepper@redhat.com> * Makefile ($(objpfx)$(multidir)): Add rule to create the directory.
Diffstat (limited to 'nptl')
-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 |