Browse code

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>

jamal authored on 2012/08/04 05:13:27
Showing 1 changed files
... ...
@@ -82,8 +82,8 @@ uninstall-libs::
82 82
 	-$(RM) "$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR)" \
83 83
 	       "$(SHLIBDIR)/$(SLIBNAME)"            \
84 84
 	       "$(SHLIBDIR)/$(SLIBNAME_WITH_VERSION)"
85
-	-$(RM) $(SLIB_INSTALL_EXTRA_SHLIB:%="$(SHLIBDIR)"%)
86
-	-$(RM) $(SLIB_INSTALL_EXTRA_LIB:%="$(LIBDIR)"%)
85
+	-$(RM)  $(SLIB_INSTALL_EXTRA_SHLIB:%="$(SHLIBDIR)/%")
86
+	-$(RM)  $(SLIB_INSTALL_EXTRA_LIB:%="$(LIBDIR)/%")
87 87
 	-$(RM) "$(LIBDIR)/$(LIBNAME)"
88 88
 
89 89
 uninstall-headers::