From: Peter Korsgaard Date: Tue, 28 Apr 2009 18:30:20 +0000 (-0000) Subject: package/openssl: fix uninstall X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a4c8130640da5b989d3cdb861a438f639499413a;p=buildroot.git package/openssl: fix uninstall --- diff --git a/package/openssl/openssl.mk b/package/openssl/openssl.mk index a238ce859f..a0e6f7e54a 100644 --- a/package/openssl/openssl.mk +++ b/package/openssl/openssl.mk @@ -73,3 +73,11 @@ else $(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/lib/engines/lib*.so endif touch $@ + +$(OPENSSL_TARGET_UNINSTALL): + $(call MESSAGE,"Uninstalling") + rm -rf $(addprefix $(TARGET_DIR)/,etc/ssl usr/bin/openssl usr/include/openssl) + rm -rf $(addprefix $(TARGET_DIR)/usr/lib/,ssl engines libcrypto* libssl* pkgconfig/libcrypto.pc) + rm -rf $(addprefix $(STAGING_DIR)/,etc/ssl usr/bin/openssl usr/include/openssl) + rm -rf $(addprefix $(STAGING_DIR)/usr/lib/,ssl engines libcrypto* libssl* pkgconfig/libcrypto.pc) + rm -f $(OPENSSL_TARGET_INSTALL_TARGET) $(OPENSSL_HOOK_POST_INSTALL)