From d8b19cb41f4c772a26be0b9586f8ee8f82b35eca Mon Sep 17 00:00:00 2001 From: Christopher Degawa Date: Wed, 20 Apr 2022 11:52:42 -0500 Subject: [PATCH] Makefile: fix ca-bundle due to mk-ca-bundle.pl being moved The script was moved in 8e22fc68e7dda43e9f but the lines that called it was not changed to reflect it's new position Signed-off-by: Christopher Degawa Closes #8728 --- Makefile.am | 2 +- Makefile.dist | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index f2fa800f9f..ce72f258bc 100644 --- a/Makefile.am +++ b/Makefile.am @@ -278,7 +278,7 @@ uninstall-hook: (cd docs && $(MAKE) uninstall) (cd docs/libcurl && $(MAKE) uninstall) -ca-bundle: lib/mk-ca-bundle.pl +ca-bundle: scripts/mk-ca-bundle.pl @echo "generating a fresh ca-bundle.crt" @perl $< -b -l -u lib/ca-bundle.crt diff --git a/Makefile.dist b/Makefile.dist index 087466b2b6..4ac0e67a8f 100644 --- a/Makefile.dist +++ b/Makefile.dist @@ -81,7 +81,7 @@ linux: all linux-ssl: ssl -ca-bundle: lib/mk-ca-bundle.pl +ca-bundle: scripts/mk-ca-bundle.pl @echo "generate a fresh ca-bundle.crt" @perl $< -b -l -u lib/ca-bundle.crt -- 2.47.3