[Ffmpeg-cvslog] r5929 - trunk/common.mak
diego
subversion
Fri Aug 4 12:13:10 CEST 2006
Author: diego
Date: Fri Aug 4 12:13:10 2006
New Revision: 5929
Modified:
trunk/common.mak
Log:
Add quotes where necessary.
Modified: trunk/common.mak
==============================================================================
--- trunk/common.mak (original)
+++ trunk/common.mak Fri Aug 4 12:13:10 2006
@@ -63,11 +63,11 @@
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-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
More information about the ffmpeg-cvslog
mailing list