diff options
author | Daniel Stenberg <daniel@haxx.se> | 2008-02-08 11:11:59 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2008-02-08 11:11:59 +0000 |
commit | 7edd13822c90491f56e30ee91f75cfd265f98d94 (patch) | |
tree | a6956c94223577b50332af4600f3265025f50aac | |
parent | a2bff51ede85311d3727b470bb1de2dd91a669a7 (diff) |
provide the ca-bundle target the same way as the Makefile.dist does it so that
it works the same way for configure-based platforms as for non-configure ones
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index f7affef8a..1a8d876a9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -5,7 +5,7 @@ # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # -# Copyright (C) 1998 - 2005, Daniel Stenberg, <daniel@haxx.se>, et al. +# Copyright (C) 1998 - 2005, 2008, Daniel Stenberg, <daniel@haxx.se>, et al. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms @@ -131,3 +131,8 @@ install-data-hook: uninstall-hook: cd include && $(MAKE) uninstall cd docs && $(MAKE) uninstall + +ca-bundle: lib/mk-ca-bundle.pl + @echo "generate a fresh ca-bundle.crt" + @mv lib/ca-bundle.crt lib/ca-bundle.crt.old + @perl $< -l -u lib/ca-bundle.crt |