From 41946aa3f63dacacb3e5e92a65f7bc8b50eac18c Mon Sep 17 00:00:00 2001 From: Mathieu Duponchelle Date: Fri, 17 Apr 2015 15:19:07 +0200 Subject: [PATCH] helpers: on OSX, MKDIR_P is install-sh -c -d So we need to call it before cding to the bin directory. --- libs/gst/helpers/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/gst/helpers/Makefile.am b/libs/gst/helpers/Makefile.am index e6d52bb..182849c 100644 --- a/libs/gst/helpers/Makefile.am +++ b/libs/gst/helpers/Makefile.am @@ -9,8 +9,8 @@ bashhelpersdir = $(BASH_HELPERS_DIR) dist_bashhelpers_DATA = gst install-exec-hook: - cd $(DESTDIR)$(bindir) && \ $(MKDIR_P) $(DESTDIR)$(BASH_HELPERS_DIR) && \ + cd $(DESTDIR)$(bindir) && \ $(INSTALL) `echo "gst-completion-helper-" | sed '$(transform)'`@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) -- 2.7.4