Skip to content

Commit

Permalink
build: Fix some paths in uninstall-libs
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
jamrial authored and beastd committed Aug 7, 2012
1 parent 7c5466d commit 4944085
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library.mak
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,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::
Expand Down

0 comments on commit 4944085

Please sign in to comment.