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

(Un)Install shared libvlc if enabled

parent 28795de6
...@@ -527,18 +527,20 @@ vlc-bundle: vlc ...@@ -527,18 +527,20 @@ vlc-bundle: vlc
find $(top_builddir)/vlc-bundle -type f -exec mimeset -f "{}" \; find $(top_builddir)/vlc-bundle -type f -exec mimeset -f "{}" \;
endif endif
# Install the symlinks # Install the symlinks and shared libvlc
install-exec-local: install-exec-local:
for i in "" $(ALIASES) ; do if test -n "$$i" ; then \ for i in "" $(ALIASES) ; do if test -n "$$i" ; then \
rm -f "$(DESTDIR)$(bindir)/$$i" && \ rm -f "$(DESTDIR)$(bindir)/$$i" && \
ln -s vlc "$(DESTDIR)$(bindir)/$$i" ; \ ln -s vlc "$(DESTDIR)$(bindir)/$$i" ; \
fi ; done fi ; done
test -z "$(DATA_noinst_libvlc)" || $(INSTALL_PROGRAM) "$(DATA_noinst_libvlc)" "$(DESTDIR)$(libdir)"
# the opposite of install-{data,exec}-local # the opposite of install-{data,exec}-local
uninstall-local: uninstall-local:
for i in "" $(ALIASES) ; do if test -n "$$i" ; then \ for i in "" $(ALIASES) ; do if test -n "$$i" ; then \
rm -f "$(DESTDIR)$(bindir)/$$i" ; \ rm -f "$(DESTDIR)$(bindir)/$$i" ; \
fi ; done fi ; done
test -z "$(DATA_noinst_libvlc)" || rm -f "$(DESTDIR)$(libdir)/$(DATA_noinst_libvlc)"
if HAVE_DARWIN if HAVE_DARWIN
# Create the MacOS X app # Create the MacOS X app
......
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