From: Daniel Stenberg Date: Wed, 9 Aug 2017 08:28:06 +0000 (+0200) Subject: build: fix 'make install' with configure, install docs/libcurl/* too X-Git-Tag: curl-7_55_1~39 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f864bd8c880d5a916379aa4f26f1c45fe370b282;p=curl build: fix 'make install' with configure, install docs/libcurl/* too Broken since d24838d4da9faa Reported-by: Bernard Spil --- diff --git a/Makefile.am b/Makefile.am index 64c1ca200..51d69d788 100644 --- a/Makefile.am +++ b/Makefile.am @@ -276,11 +276,13 @@ cygwinbin: install-data-hook: cd include && $(MAKE) install cd docs && $(MAKE) install + cd docs/libcurl && $(MAKE) install # We extend the standard uninstall with a custom hook: uninstall-hook: cd include && $(MAKE) uninstall cd docs && $(MAKE) uninstall + cd docs/libcurl && $(MAKE) uninstall ca-bundle: lib/mk-ca-bundle.pl @echo "generating a fresh ca-bundle.crt"