mirror of https://github.com/mpv-player/mpv
make uninstall was leaving vidix, dha, and libmpdvdkit libraries
and translated manpages as well. This fixes the issue. Resolves bug #9 (hopefully) Based on Bugzilla patch by Evgueni V. Gavrilov (aquatique at rusunix.org) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13703 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
9ad2dd2a29
commit
49ec55840e
10
Makefile
10
Makefile
|
@ -330,6 +330,16 @@ uninstall:
|
||||||
-rm -f $(BINDIR)/$(PRG_MENCODER) $(MANDIR)/man1/mencoder.1
|
-rm -f $(BINDIR)/$(PRG_MENCODER) $(MANDIR)/man1/mencoder.1
|
||||||
-rm -f $(prefix)/share/pixmaps/mplayer-desktop.xpm
|
-rm -f $(prefix)/share/pixmaps/mplayer-desktop.xpm
|
||||||
-rm -f $(prefix)/share/applications/mplayer.desktop
|
-rm -f $(prefix)/share/applications/mplayer.desktop
|
||||||
|
-rm -f $(LIBDIR)/libmpdvdkit.so
|
||||||
|
for l in $(MAN_LANG); do \
|
||||||
|
if test "i$$l" != "en"; then \
|
||||||
|
-rm -f $(MANDIR)/$$l/man1/mplayer.1 $(MANDIR)/$$l/man1/mencoder.1 \
|
||||||
|
-rm -f $(MANDIR)/$$l/man1/gmplayer.1 \
|
||||||
|
fi \
|
||||||
|
done
|
||||||
|
ifeq ($(VIDIX),yes)
|
||||||
|
$(DO_MAKE)
|
||||||
|
endif
|
||||||
@echo "Uninstall completed"
|
@echo "Uninstall completed"
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
|
|
@ -40,6 +40,9 @@ depend:
|
||||||
install:
|
install:
|
||||||
$(DO_MAKE)
|
$(DO_MAKE)
|
||||||
|
|
||||||
|
uninstall:
|
||||||
|
$(DO_MAKE)
|
||||||
|
|
||||||
#
|
#
|
||||||
# include dependency files if they exist
|
# include dependency files if they exist
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue