mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-30 12:31:53 +08:00
* Makerules: Use -p option with mkdir.
This commit is contained in:
parent
bd0dcd289c
commit
5dfeae0ec5
@ -1,5 +1,7 @@
|
|||||||
2007-08-25 Ulrich Drepper <drepper@redhat.com>
|
2007-08-25 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* Makerules: Use -p option with mkdir.
|
||||||
|
|
||||||
* nis/nis_xdr.c (_xdr_nis_server): Work around gcc alias warning.
|
* nis/nis_xdr.c (_xdr_nis_server): Work around gcc alias warning.
|
||||||
(_xdr_directory_obj): Likewise.
|
(_xdr_directory_obj): Likewise.
|
||||||
(xdr_entry_obj): Likewise.
|
(xdr_entry_obj): Likewise.
|
||||||
|
@ -732,7 +732,9 @@ MAKEFLAGS := $(MAKEFLAGS)r
|
|||||||
# Generic rule for making directories.
|
# Generic rule for making directories.
|
||||||
%/:
|
%/:
|
||||||
# mkdir isn't smart enough to strip a trailing /.
|
# 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
|
# Make sure that object files are not removed
|
||||||
# when they are intermediates between sources and library members.
|
# when they are intermediates between sources and library members.
|
||||||
|
Loading…
Reference in New Issue
Block a user