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

Deletes vlc's aliases upon make uninstall (refs #231)

parent 7ead100b
......@@ -485,6 +485,12 @@ endif
ln -s vlc "$(DESTDIR)$(bindir)/$$i" ; \
fi ; done
# the opposite of install-{data,exec}-local
uninstall-local:
for i in "" $(ALIASES) ; do if test -n "$$i" ; then \
rm -f "$(DESTDIR)$(bindir)/$$i" ; \
fi ; done
if HAVE_DARWIN
# Create the MacOS X app
vlc_app_DATA = VLC.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