bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=af5f37bd465edaa7eb9b8479df6e08788366447c
commit af5f37bd465edaa7eb9b8479df6e08788366447c Author: Ross Vandegrift <r...@kallisti.us> Date: Sun Sep 22 23:30:25 2019 +0000 Use EFL version for doc tarball, not meson version Reviewed-by: Marcel Hollerbach <m...@marcel-hollerbach.de> Differential Revision: https://phab.enlightenment.org/D10070 --- doc/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/meson.build b/doc/meson.build index b6bce8bf52..11e80dfadc 100644 --- a/doc/meson.build +++ b/doc/meson.build @@ -182,8 +182,8 @@ doc_target += custom_target('doxygen', ) compress_target = custom_target('package_doc_tar', - command: [tar, '-C', meson.build_root(), '-cf', 'efl-'+meson.version()+'.tar', 'html', 'man'], - output: 'efl-'+meson.version()+'.tar', + command: [tar, '-C', meson.build_root(), '-cf', 'efl-'+meson.project_version()+'.tar', 'html', 'man'], + output: 'efl-'+meson.project_version()+'.tar', depends: doc_target, build_by_default: false ) --