From 76808d6e7ef6d56440b6b773706d6254c9e161fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Paesa?= Date: Sun, 8 Oct 2006 14:14:33 +0000 Subject: [PATCH] =?UTF-8?q?Quote=20names=20individually,=20since=20otherwi?= =?UTF-8?q?se=20the=20whole=20list=20was=20understood=20as=20a=20single=20?= =?UTF-8?q?long=20filename=20by=20the=20shell.=20patch=20by=20V=C3=ADctor?= =?UTF-8?q?=20Paesa,=20wzrlpy=20arsystel=20com?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Originally committed as revision 6589 to svn://svn.ffmpeg.org/ffmpeg/trunk --- common.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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*