From: Mathieu Duponchelle Date: Fri, 17 Apr 2015 11:02:12 +0000 (+0200) Subject: helpers: install -D isn't portable, use $(MKDIR_P) instead. X-Git-Tag: 1.6.1~379 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6ce8398bc6829bb008da7cbd6878e734374d55ca;p=platform%2Fupstream%2Fgstreamer.git helpers: install -D isn't portable, use $(MKDIR_P) instead. --- diff --git a/libs/gst/helpers/Makefile.am b/libs/gst/helpers/Makefile.am index a616721..e6d52bb 100644 --- a/libs/gst/helpers/Makefile.am +++ b/libs/gst/helpers/Makefile.am @@ -10,8 +10,9 @@ dist_bashhelpers_DATA = gst install-exec-hook: cd $(DESTDIR)$(bindir) && \ + $(MKDIR_P) $(DESTDIR)$(BASH_HELPERS_DIR) && \ $(INSTALL) `echo "gst-completion-helper-" | sed '$(transform)'`@GST_API_VERSION@$(EXEEXT) \ - -D $(DESTDIR)$(BASH_HELPERS_DIR)/gst-completion-helper-@GST_API_VERSION@$(EXEEXT) && \ + $(DESTDIR)$(BASH_HELPERS_DIR)/gst-completion-helper-@GST_API_VERSION@$(EXEEXT) && \ rm `echo "gst-completion-helper-" | sed '$(transform)'`@GST_API_VERSION@$(EXEEXT) uninstall-hook: