diff options
author | jamal <jamrial@gmail.com> | 2012-08-03 17:13:27 -0300 |
---|---|---|
committer | Alexander Strasser <eclipse7@gmx.net> | 2012-08-07 22:34:10 +0200 |
commit | 49440853d0c1e740daee0e2df1e65d5e67b1ad6b (patch) | |
tree | f234dc192ae89c41c50e4eb11724d074f65c71f0 | |
parent | 7c5466d4fc2e198ba2cac9d5b1d076613fd0b120 (diff) | |
download | ffmpeg-49440853d0c1e740daee0e2df1e65d5e67b1ad6b.tar.gz |
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>
-rw-r--r-- | library.mak | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library.mak b/library.mak index 5cc3252ddd..b1dd95411a 100644 --- a/library.mak +++ b/library.mak @@ -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:: |