From c39f47028b17f4769b1382267e3f0076e4f7800e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-S=C3=A9bastien=20P=C3=A9dron?= Date: Thu, 31 Mar 2016 17:35:31 +0200 Subject: [PATCH] make docs: Force a dependency to `edoc` In newer Erlang.mk, `edoc` is added as a dependency to `docs` only if `doc/overview.edoc` exists. However in our Makefile, this file is generated. Therefore, at the time the Makefile is evaluated, this file is missing and `edoc` is not added as a dependency to `docs`. To workaround this, we explicitely add this dependency. --- deps/amqp_client/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/deps/amqp_client/Makefile b/deps/amqp_client/Makefile index 3f4bbf1600..c2ca682629 100644 --- a/deps/amqp_client/Makefile +++ b/deps/amqp_client/Makefile @@ -30,6 +30,7 @@ include erlang.mk distribution: docs source-dist package +docs:: edoc edoc: doc/overview.edoc doc/overview.edoc: src/overview.edoc.in