Skip to content
Snippets Groups Projects
Commit c9e2057e authored by Roman Sivriver's avatar Roman Sivriver
Browse files

gst: fixed the install command for gdb python macros on macos - `install -D`...

gst: fixed the install command for gdb python macros on macos - `install -D` is not supported by BSD install
parent ec5e781e
No related branches found
No related tags found
No related merge requests found
......@@ -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"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment