diff options
author | Jakub Jelinek <jakub@redhat.com> | 2007-08-27 20:40:42 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2007-08-27 20:40:42 +0000 |
commit | 8d599f5ab190dfb8a394104c4dc0d39c90f19093 (patch) | |
tree | c46dd272dde92188874882c675c01b017958fbbb /Makerules | |
parent | 9abaa7d89fe873eeebda1bd227fde5d5bd6ab332 (diff) | |
download | glibc-8d599f5ab190dfb8a394104c4dc0d39c90f19093.tar.gz |
Updated to fedora-glibc-20070827T2032
Diffstat (limited to 'Makerules')
-rw-r--r-- | Makerules | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -732,7 +732,9 @@ MAKEFLAGS := $(MAKEFLAGS)r # Generic rule for making directories. %/: # mkdir isn't smart enough to strip a trailing /. - mkdir $(@:%/=%) +# We always require a mkdir which supports the -p option to avoid error +# messages in case of races. + mkdir -p $(@:%/=%) # Make sure that object files are not removed # when they are intermediates between sources and library members. |