Commit a0be650f authored by diego's avatar diego

Add quotes where necessary.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5929 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 7e1e151f
...@@ -63,11 +63,11 @@ ifeq ($(CONFIG_MINGW),yes) ...@@ -63,11 +63,11 @@ ifeq ($(CONFIG_MINGW),yes)
install $(INSTALLSTRIP) -m 755 $(SLIBNAME) "$(prefix)" install $(INSTALLSTRIP) -m 755 $(SLIBNAME) "$(prefix)"
else else
install $(INSTALLSTRIP) -m 755 $(SLIBNAME) \ install $(INSTALLSTRIP) -m 755 $(SLIBNAME) \
$(shlibdir)/$(SLIBNAME_WITH_VERSION) "$(shlibdir)/$(SLIBNAME_WITH_VERSION)"
ln -sf $(SLIBNAME_WITH_VERSION) \ ln -sf $(SLIBNAME_WITH_VERSION) \
$(shlibdir)/$(SLIBNAME_WITH_MAJOR) "$(shlibdir)/$(SLIBNAME_WITH_MAJOR)"
ln -sf $(SLIBNAME_WITH_VERSION) \ ln -sf $(SLIBNAME_WITH_VERSION) \
$(shlibdir)/$(SLIBNAME) "$(shlibdir)/$(SLIBNAME)"
endif endif
install-lib-static: $(LIB) install-lib-static: $(LIB)
...@@ -84,17 +84,17 @@ uninstall: uninstall-libs uninstall-headers ...@@ -84,17 +84,17 @@ uninstall: uninstall-libs uninstall-headers
uninstall-libs: uninstall-libs:
ifeq ($(CONFIG_MINGW),yes) ifeq ($(CONFIG_MINGW),yes)
-rm -f $(prefix)/$(SLIBNAME) -rm -f "$(prefix)/$(SLIBNAME)"
else else
-rm -f $(shlibdir)/$(SLIBNAME_WITH_MAJOR) \ -rm -f "$(shlibdir)/$(SLIBNAME_WITH_MAJOR)" \
$(shlibdir)/$(SLIBNAME) \ "$(shlibdir)/$(SLIBNAME)" \
$(shlibdir)/$(SLIBNAME_WITH_VERSION) "$(shlibdir)/$(SLIBNAME_WITH_VERSION)"
endif endif
-rm -f $(libdir)/$(LIB) -rm -f "$(libdir)/$(LIB)"
uninstall-headers: uninstall-headers:
rm -f $(addprefix $(incdir)/,$(HEADERS)) rm -f "$(addprefix $(incdir)/,$(HEADERS))"
rm -f $(libdir)/pkgconfig/lib$(NAME).pc rm -f "$(libdir)/pkgconfig/lib$(NAME).pc"
# #
# include dependency files if they exist # include dependency files if they exist
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment