The unistall action for checker libraries doesn't work. Also, the uninstall action for the prioritizer libraries runs the risk of uninstalling something that we didn't install. This patch changes them to correctly uninstall the files listed in LIBS. Signed-off-by: Benjamin Marzinski <bmarzins@xxxxxxxxxx> --- libmultipath/checkers/Makefile | 2 +- libmultipath/prioritizers/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) Index: multipath-tools/libmultipath/checkers/Makefile =================================================================== --- multipath-tools.orig/libmultipath/checkers/Makefile +++ multipath-tools/libmultipath/checkers/Makefile @@ -27,7 +27,7 @@ install: $(INSTALL_PROGRAM) -m 755 $(LIBS) $(DESTDIR)$(libdir) uninstall: - rm -f $(DESTDIR)$(libdir)/$(LIBS) + for file in $(LIBS); do rm -f $(DESTDIR)$(libdir)/$$file; done clean: rm -f core *.a *.o *.gz *.so Index: multipath-tools/libmultipath/prioritizers/Makefile =================================================================== --- multipath-tools.orig/libmultipath/prioritizers/Makefile +++ multipath-tools/libmultipath/prioritizers/Makefile @@ -28,7 +28,7 @@ install: $(LIBS) $(INSTALL_PROGRAM) -m 755 libprio*.so $(DESTDIR)$(libdir) uninstall: - rm -f $(DESTDIR)$(libdir)/libprio*.so + for file in $(LIBS); do rm -f $(DESTDIR)$(libdir)/$$file; done clean: rm -f core *.a *.o *.gz *.so -- dm-devel mailing list dm-devel@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/dm-devel