Quote paths in uninstall commands where necessary.

Originally committed as revision 10927 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2007-11-04 23:00:22 +00:00
parent 47a1ae1bc9
commit 1c2211bd4e
1 changed files with 3 additions and 3 deletions

View File

@ -188,13 +188,13 @@ endif
uninstall: uninstall-progs uninstall-libs uninstall-headers uninstall-man uninstall-vhook
uninstall-progs:
rm -f $(addprefix $(BINDIR)/, $(ALLPROGS))
rm -f $(addprefix "$(BINDIR)/", $(ALLPROGS))
uninstall-man:
rm -f $(addprefix $(MANDIR)/man1/,$(ALLMANPAGES))
rm -f $(addprefix "$(MANDIR)/man1/",$(ALLMANPAGES))
uninstall-vhook:
rm -f $(addprefix $(SHLIBDIR)/,$(ALLHOOKS_SRCS:.c=$(SLIBSUF)))
rm -f $(addprefix "$(SHLIBDIR)/",$(ALLHOOKS_SRCS:.c=$(SLIBSUF)))
-rmdir "$(SHLIBDIR)/vhook/"
uninstall-libs: