summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-11-04 23:00:22 +0000
committerDiego Biurrun <diego@biurrun.de>2007-11-04 23:00:22 +0000
commit1c2211bd4e6e91cad9489a55434524c4fc6a6d6e (patch)
tree8388e9f5bd1807a37231172ab7eeadc43df4899b /Makefile
parent47a1ae1bc99f7df399f76946a92c42fa8e1937fb (diff)
Quote paths in uninstall commands where necessary.
Originally committed as revision 10927 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index e2b60501b8..053aa75f33 100644
--- a/Makefile
+++ b/Makefile
@@ -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: