summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-02-18 22:38:21 +0100
committerRichard Levitte <levitte@openssl.org>2016-02-18 23:47:03 +0100
commitdf302cdce7bd9b27bb4745674abc06d3310dde33 (patch)
tree978381ee1dc978f054b6325f5a120f35fa848dbc /Makefile.in
parentf325fba50c6e1cab053e449c420f76256b551867 (diff)
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 <rsalz@openssl.org>
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
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`"; \