Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjamal <jamrial@gmail.com>2012-08-04 00:13:27 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-09-13 06:47:57 +0400
commit50e6e494c90ece9b66a8f6ecac342acd410a2ff0 (patch)
tree8bde30d5456b66dbc84bf92e8c86206e6375f736
parent0f54c97f58648cf160b7d85b700e38ba84214f69 (diff)
build: Fix some paths in uninstall-libs
Folder and file names weren't being separated with a slash. This resulted in .dll.a, .lib and .def files not being removed on uninstall. Signed-off-by: Alexander Strasser <eclipse7@gmx.net> (cherry picked from commit 49440853d0c1e740daee0e2df1e65d5e67b1ad6b) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--library.mak4
1 files changed, 2 insertions, 2 deletions
diff --git a/library.mak b/library.mak
index 40a364eccc..cc71f9df82 100644
--- a/library.mak
+++ b/library.mak
@@ -84,8 +84,8 @@ uninstall-libs::
-$(RM) "$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR)" \
"$(SHLIBDIR)/$(SLIBNAME)" \
"$(SHLIBDIR)/$(SLIBNAME_WITH_VERSION)"
- -$(RM) $(SLIB_INSTALL_EXTRA_SHLIB:%="$(SHLIBDIR)"%)
- -$(RM) $(SLIB_INSTALL_EXTRA_LIB:%="$(LIBDIR)"%)
+ -$(RM) $(SLIB_INSTALL_EXTRA_SHLIB:%="$(SHLIBDIR)/%")
+ -$(RM) $(SLIB_INSTALL_EXTRA_LIB:%="$(LIBDIR)/%")
-$(RM) "$(LIBDIR)/$(LIBNAME)"
uninstall-headers::