Commit c7eabcd9 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Put plugins in $(pkglibdir)/modules

We can now store other architecture-dependant files in $(pkglibdir)
(and without bugging the plugins scan).
parent 1b2799e4
...@@ -71,7 +71,7 @@ stamp-cache: ...@@ -71,7 +71,7 @@ stamp-cache:
install-exec-hook: install-exec-hook:
if test -z "$(DESTDIR)"; then \ if test -z "$(DESTDIR)"; then \
../bin/vlc-cache-gen$(EXEEXT) "$(vlclibdir)" ; \ ../bin/vlc-cache-gen$(EXEEXT) "$(vlclibdir)/modules" ; \
else \ else \
echo "Staged installation: cache generation skipped!" ; \ echo "Staged installation: cache generation skipped!" ; \
fi fi
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
NULL = NULL =
SUFFIXES = SUFFIXES =
libvlcdir = $(vlclibdir)/$(basedir) libvlcdir = $(vlclibdir)/modules/$(basedir)
EXTRA_DIST = Modules.am EXTRA_DIST = Modules.am
BUILT_SOURCES = BUILT_SOURCES =
CLEANFILES = $(BUILT_SOURCES) CLEANFILES = $(BUILT_SOURCES)
......
...@@ -192,7 +192,7 @@ libvlccore_la_CFLAGS = `$(VLC_CONFIG) --cflags libvlccore` \ ...@@ -192,7 +192,7 @@ libvlccore_la_CFLAGS = `$(VLC_CONFIG) --cflags libvlccore` \
-DSYSCONFDIR=\"$(sysconfdir)\" \ -DSYSCONFDIR=\"$(sysconfdir)\" \
-DDATA_PATH=\"$(vlcdatadir)\" \ -DDATA_PATH=\"$(vlcdatadir)\" \
-DLIBDIR=\"$(libdir)\" \ -DLIBDIR=\"$(libdir)\" \
-DPLUGIN_PATH=\"$(vlclibdir)\" -DPLUGIN_PATH=\"$(vlclibdir)/modules\"
libvlccore_la_LDFLAGS = `$(VLC_CONFIG) --ldflags libvlccore` $(AM_LDFLAGS) \ libvlccore_la_LDFLAGS = `$(VLC_CONFIG) --ldflags libvlccore` $(AM_LDFLAGS) \
-no-undefined \ -no-undefined \
-export-symbols $(srcdir)/libvlccore.sym \ -export-symbols $(srcdir)/libvlccore.sym \
......
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