Commit 1c2211bd authored by Diego Biurrun's avatar Diego Biurrun

Quote paths in uninstall commands where necessary.

Originally committed as revision 10927 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 47a1ae1b
......@@ -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:
......
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