Commit df302cdc authored by Richard Levitte's avatar Richard Levitte
Browse files

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: default avatarRich Salz <rsalz@openssl.org>
parent f325fba5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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`"; \