mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-08 00:59:48 +00:00
plugin: Name differently between python2 and python3
Those are 2 different binaries and thus should have different .so names. Just use the $PYTHON_SO for that to happen. https://bugzilla.gnome.org/show_bug.cgi?id=738157
This commit is contained in:
parent
302a383a10
commit
025b7cfbea
1 changed files with 1 additions and 1 deletions
|
@ -8,6 +8,6 @@ INCLUDES = $(PYGOBJECT_CFLAGS) $(GST_CFLAGS)\
|
|||
$(PYTHON_INCLUDES)
|
||||
|
||||
libgstpythonplugin_la_SOURCES = gstpythonplugin.c
|
||||
libgstpythonplugin_la_LDFLAGS = -avoid-version
|
||||
libgstpythonplugin_la_LDFLAGS = -avoid-version -shrext $(PYTHON_SO)
|
||||
libgstpythonplugin_la_LIBADD = $(PYTHON_LIBS) $(PYGOBJECT_LIBS) $(GST_LIBS)
|
||||
libgstpythonplugin_la_CFLAGS = $(GST_CFLAGS) $(PYGOBJECT_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(PYTHON_INCLUDES)
|
||||
|
|
Loading…
Reference in a new issue