summaryrefslogtreecommitdiff
path: root/common.mak
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2006-08-04 10:13:10 +0000
committerDiego Biurrun <diego@biurrun.de>2006-08-04 10:13:10 +0000
commitafa615327b0176609975b2015892a74ef20aa28e (patch)
tree29cd26fb307f851debcce97c67c409069d5a3459 /common.mak
parent99f649a265f379a2e26b7010e7b3c5b299386b2d (diff)
Add quotes where necessary.
Originally committed as revision 5929 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'common.mak')
-rw-r--r--common.mak20
1 files changed, 10 insertions, 10 deletions
diff --git a/common.mak b/common.mak
index 0c08a59388..8069d21f9d 100644
--- a/common.mak
+++ b/common.mak
@@ -63,11 +63,11 @@ ifeq ($(CONFIG_MINGW),yes)
install $(INSTALLSTRIP) -m 755 $(SLIBNAME) "$(prefix)"
else
install $(INSTALLSTRIP) -m 755 $(SLIBNAME) \
- $(shlibdir)/$(SLIBNAME_WITH_VERSION)
+ "$(shlibdir)/$(SLIBNAME_WITH_VERSION)"
ln -sf $(SLIBNAME_WITH_VERSION) \
- $(shlibdir)/$(SLIBNAME_WITH_MAJOR)
+ "$(shlibdir)/$(SLIBNAME_WITH_MAJOR)"
ln -sf $(SLIBNAME_WITH_VERSION) \
- $(shlibdir)/$(SLIBNAME)
+ "$(shlibdir)/$(SLIBNAME)"
endif
install-lib-static: $(LIB)
@@ -84,17 +84,17 @@ uninstall: uninstall-libs uninstall-headers
uninstall-libs:
ifeq ($(CONFIG_MINGW),yes)
- -rm -f $(prefix)/$(SLIBNAME)
+ -rm -f "$(prefix)/$(SLIBNAME)"
else
- -rm -f $(shlibdir)/$(SLIBNAME_WITH_MAJOR) \
- $(shlibdir)/$(SLIBNAME) \
- $(shlibdir)/$(SLIBNAME_WITH_VERSION)
+ -rm -f "$(shlibdir)/$(SLIBNAME_WITH_MAJOR)" \
+ "$(shlibdir)/$(SLIBNAME)" \
+ "$(shlibdir)/$(SLIBNAME_WITH_VERSION)"
endif
- -rm -f $(libdir)/$(LIB)
+ -rm -f "$(libdir)/$(LIB)"
uninstall-headers:
- rm -f $(addprefix $(incdir)/,$(HEADERS))
- rm -f $(libdir)/pkgconfig/lib$(NAME).pc
+ rm -f "$(addprefix $(incdir)/,$(HEADERS))"
+ rm -f "$(libdir)/pkgconfig/lib$(NAME).pc"
#
# include dependency files if they exist