From b578357e597470667b9bd7e0bd7583dffa205100 Mon Sep 17 00:00:00 2001 From: Måns Rullgård Date: Sat, 6 Mar 2010 17:14:11 +0000 Subject: Use mkdir -p to create directories Originally committed as revision 22241 to svn://svn.ffmpeg.org/ffmpeg/trunk --- subdir.mak | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'subdir.mak') diff --git a/subdir.mak b/subdir.mak index 5774c6d76f..ed1d68833f 100644 --- a/subdir.mak +++ b/subdir.mak @@ -62,7 +62,7 @@ endif endif install-lib$(NAME)-shared: $(SUBDIR)$(SLIBNAME) - install -d "$(SHLIBDIR)" + mkdir -p "$(SHLIBDIR)" install -m 755 $$< "$(SHLIBDIR)/$(SLIBNAME_WITH_VERSION)" $(STRIP) "$(SHLIBDIR)/$(SLIBNAME_WITH_VERSION)" cd "$(SHLIBDIR)" && \ @@ -72,13 +72,13 @@ install-lib$(NAME)-shared: $(SUBDIR)$(SLIBNAME) $(SLIB_INSTALL_EXTRA_CMD) install-lib$(NAME)-static: $(SUBDIR)$(LIBNAME) - install -d "$(LIBDIR)" + mkdir -p "$(LIBDIR)" install -m 644 $$< "$(LIBDIR)" $(LIB_INSTALL_EXTRA_CMD) install-headers:: - install -d "$(INCINSTDIR)" - install -d "$(LIBDIR)/pkgconfig" + mkdir -p "$(INCINSTDIR)" + mkdir -p "$(LIBDIR)/pkgconfig" install -m 644 $(addprefix "$(SRC_DIR)"/,$(HEADERS)) "$(INCINSTDIR)" ifdef BUILT_HEADERS install -m 644 $(addprefix $(SUBDIR),$(BUILT_HEADERS)) "$(INCINSTDIR)" -- cgit v1.2.3