diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-11-04 23:00:22 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-11-04 23:00:22 +0000 |
commit | 1c2211bd4e6e91cad9489a55434524c4fc6a6d6e (patch) | |
tree | 8388e9f5bd1807a37231172ab7eeadc43df4899b /Makefile | |
parent | 47a1ae1bc99f7df399f76946a92c42fa8e1937fb (diff) | |
download | ffmpeg-1c2211bd4e6e91cad9489a55434524c4fc6a6d6e.tar.gz |
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-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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: |