Commit c7e2d546 authored by Thomas Guillem's avatar Thomas Guillem Committed by Jean-Baptiste Kempf

modules: allow '-' in module filenames

In include/vlc_plugin.h, CONCATENATE was failing due to an unexpected '-'
character.

This fixes build with static modules.
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 4e702c61
...@@ -15,7 +15,7 @@ CLEANFILES = $(BUILT_SOURCES) ...@@ -15,7 +15,7 @@ CLEANFILES = $(BUILT_SOURCES)
LTLIBVLCCORE = $(top_builddir)/src/libvlccore.la LTLIBVLCCORE = $(top_builddir)/src/libvlccore.la
# Module name from object or executable file name. # Module name from object or executable file name.
MODULE_NAME = $$(p="$@"; p="$${p\#\#*/}"; p="$${p\#lib}"; p="$${p%_plugin*}"; p="$${p%.lo}"; echo "$$p") MODULE_NAME = $$(p="$@"; p="$${p\#\#*/}"; p="$${p\#lib}"; p="$${p%_plugin*}"; p="$${p//-/\_}"; p="$${p%.lo}"; echo "$$p")
AM_CPPFLAGS = -DMODULE_STRING=\"$(MODULE_NAME)\" AM_CPPFLAGS = -DMODULE_STRING=\"$(MODULE_NAME)\"
if HAVE_DYNAMIC_PLUGINS if HAVE_DYNAMIC_PLUGINS
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment