From c9e2057ec665043b8b1eeec60bdfd207d9318104 Mon Sep 17 00:00:00 2001 From: Roman Sivriver Date: Thu, 6 Dec 2018 20:22:21 +0000 Subject: [PATCH] gst: fixed the install command for gdb python macros on macos - `install -D` is not supported by BSD install --- libs/gst/helpers/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/gst/helpers/Makefile.am b/libs/gst/helpers/Makefile.am index 2047580..7cde4eb 100644 --- a/libs/gst/helpers/Makefile.am +++ b/libs/gst/helpers/Makefile.am @@ -39,7 +39,8 @@ gdbdir = $(datadir)/gstreamer-@GST_API_VERSION@/gdb dist_gdb_DATA = gst_gdb.py glib_gobject_helper.py install-data-hook: - $(INSTALL) -D $(builddir)/libgstreamer-gdb.py $(DESTDIR)$(datadir)/gdb/auto-load$(libdir)/libgstreamer-@GST_API_VERSION@.so.0.$(GST_CURRENT).$(GST_REVISION)-gdb.py + $(INSTALL) -d $(DESTDIR)$(datadir)/gdb/auto-load$(libdir) + $(INSTALL) $(builddir)/libgstreamer-gdb.py $(DESTDIR)$(datadir)/gdb/auto-load$(libdir)/libgstreamer-@GST_API_VERSION@.so.0.$(GST_CURRENT).$(GST_REVISION)-gdb.py uninstall-hook: rm -f "$(DESTDIR)$(datadir)/gdb/auto-load$(libdir)/libgstreamer-@GST_API_VERSION@.so.0.$(GST_CURRENT).$(GST_REVISION)-gdb.py" -- 2.7.4