doc/meson.build: remove "upload" target
Since we migrated to readthedocs.io, we don't need this target anymore. And Meson 0.58.0 apparently has a change breaking this target. Closes https://github.com/MusicPlayerDaemon/MPD/issues/1161
This commit is contained in:
parent
514ed33a02
commit
1215818572
|
@ -22,20 +22,6 @@ if get_option('html_manual')
|
||||||
install: true,
|
install: true,
|
||||||
install_dir: join_paths(get_option('datadir'), 'doc', meson.project_name()),
|
install_dir: join_paths(get_option('datadir'), 'doc', meson.project_name()),
|
||||||
)
|
)
|
||||||
|
|
||||||
custom_target(
|
|
||||||
'upload',
|
|
||||||
input: sphinx_output,
|
|
||||||
output: 'upload',
|
|
||||||
build_always_stale: true,
|
|
||||||
command: [
|
|
||||||
'rsync', '-vpruz', '--delete', meson.current_build_dir() + '/',
|
|
||||||
'www.musicpd.org:/var/www/mpd/doc/',
|
|
||||||
'--chmod=Dug+rwx,Do+rx,Fug+rw,Fo+r',
|
|
||||||
'--include=html', '--include=html/**',
|
|
||||||
'--exclude=*',
|
|
||||||
],
|
|
||||||
)
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('manpages')
|
if get_option('manpages')
|
||||||
|
|
Loading…
Reference in New Issue