mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
gst: fixed the install command for gdb python macros on macos - install -D
is not supported by BSD install
This commit is contained in:
parent
ec5e781e6b
commit
c9e2057ec6
1 changed files with 2 additions and 1 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue