From d0df1f76a1f0bbe4f485a56d92fc765082c3f4e2 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Wed, 23 Dec 2020 12:49:46 -0700 Subject: [PATCH] Do not compile expat with docbook --- recipes/expat/recipe.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/recipes/expat/recipe.toml b/recipes/expat/recipe.toml index 47a5bd5a..7f5cd3ae 100644 --- a/recipes/expat/recipe.toml +++ b/recipes/expat/recipe.toml @@ -2,4 +2,10 @@ tar = "https://github.com/libexpat/libexpat/releases/download/R_2_2_6/expat-2.2.6.tar.bz2" [build] -template = "configure" +template = "custom" +script = """ +COOKBOOK_CONFIGURE_FLAGS+=( + --without-docbook +) +cookbook_configure +"""