Use EFL version for doc tarball, not meson version

Reviewed-by: Marcel Hollerbach <mail@marcel-hollerbach.de>
Differential Revision: https://phab.enlightenment.org/D10070
This commit is contained in:
Ross Vandegrift 2019-09-22 23:30:25 +00:00 committed by Marcel Hollerbach
parent 3b53749149
commit af5f37bd46
1 changed files with 2 additions and 2 deletions

View File

@ -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
)