summaryrefslogtreecommitdiff
path: root/common.mak
diff options
context:
space:
mode:
authorVíctor Paesa <wzrlpy@arsystel.com>2006-10-08 14:14:33 +0000
committerDiego Biurrun <diego@biurrun.de>2006-10-08 14:14:33 +0000
commit76808d6e7ef6d56440b6b773706d6254c9e161fe (patch)
tree2a6e183db4a4b5fb4721d630b9385e47b2f5561a /common.mak
parent75336fc885a696fd34b320bcadcddb98cb4683a9 (diff)
Quote names individually, since otherwise the whole list was understood
as a single long filename by the shell. patch by Víctor Paesa, wzrlpy arsystel com Originally committed as revision 6589 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'common.mak')
-rw-r--r--common.mak2
1 files changed, 1 insertions, 1 deletions
diff --git a/common.mak b/common.mak
index 7ef4693b12..78985d8b36 100644
--- a/common.mak
+++ b/common.mak
@@ -89,7 +89,7 @@ uninstall-libs:
-rm -f "$(libdir)/$(LIB)"
uninstall-headers:
- rm -f "$(addprefix $(incdir)/,$(HEADERS))"
+ rm -f $(addprefix "$(incdir)/",$(HEADERS))
rm -f "$(libdir)/pkgconfig/lib$(NAME).pc"
.PHONY: all depend dep clean distclean install* uninstall*