From: Richard Levitte Date: Thu, 18 Feb 2016 21:38:21 +0000 (+0100) Subject: Fix uninstall_sw for the unixmake scheme X-Git-Tag: OpenSSL_1_1_0-pre4~611 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=df302cdce7bd9b27bb4745674abc06d3310dde33;p=openssl Fix uninstall_sw for the unixmake scheme The uninstall_sw target tried to 'make uninstall' in all subdirs. Change it to only go into $(INSTALL_SUBS), just like install_sw does. Reviewed-by: Rich Salz --- diff --git a/Makefile.in b/Makefile.in index 2fa7a652bc..79a1ea95eb 100644 --- a/Makefile.in +++ b/Makefile.in @@ -661,7 +661,7 @@ uninstall_sw: $(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc $(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc $(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc - @target=uninstall; $(RECURSIVE_BUILD_CMD) + @target=uninstall; for dir in $(INSTALL_SUBS); do $(BUILD_CMD); done install_html_docs: here="`pwd`"; \