From 7657f6f52315fadf55b95f46ef9a170a981f3d81 Mon Sep 17 00:00:00 2001 From: Zhi Guan Date: Fri, 16 Nov 2018 14:15:42 +0800 Subject: [PATCH] Install openssl cli Symbol link to `gmssl` binary --- Configurations/unix-Makefile.tmpl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl index 688fd3b3..88761f76 100644 --- a/Configurations/unix-Makefile.tmpl +++ b/Configurations/unix-Makefile.tmpl @@ -511,6 +511,8 @@ install_runtime: chmod 755 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \ mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \ $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \ + echo "link $(DESTDIR)$(INSTALLTOP)/bin/$$fn -> $(DESTDIR)$(INSTALLTOP)/bin/openssl"; \ + ln -sf $$fn $(DESTDIR)$(INSTALLTOP)/bin/openssl; \ done @set -e; for x in dummy $(BIN_SCRIPTS); do \ if [ "$$x" = "dummy" ]; then continue; fi; \