From 5c5567515551b04a9af5d6ab12dc3faaff545ddd Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mat=C3=ADas=20Fonzo?= Date: Mon, 11 Jul 2022 16:32:18 -0300 Subject: [PATCH] recipes: tools/espeak: Fix 'docsdir' destination MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Matías Fonzo --- recipes/tools/espeak/recipe | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recipes/tools/espeak/recipe b/recipes/tools/espeak/recipe index 0277602a..9bb07921 100644 --- a/recipes/tools/espeak/recipe +++ b/recipes/tools/espeak/recipe @@ -1,7 +1,7 @@ # Build recipe for espeak. # # Copyright (c) 2018 Thiago Seus, . -# Copyright (c) 2020 Matias Fonzo, . +# Copyright (c) 2020, 2022 Matias Fonzo, . # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -20,7 +20,7 @@ set -e program=espeak version=1.48.04 -release=2 +release=3 # Define a category for the output of the package name pkgcategory=tools @@ -68,6 +68,6 @@ build() cp -p -r $docs "${destdir}/$docsdir" # Rename docs/ directory for the package - mv "${destdir}/$docsdirdocs" "${destdir}/$docsdirhtml" + mv "${destdir}/${docsdir}/docs" "${destdir}/${docsdir}/html" } -- 2.11.4.GIT