From 1215818572b6062c4ec709ba818954d49fbd9311 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 17 May 2021 18:32:20 +0200 Subject: [PATCH] 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 --- doc/meson.build | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/doc/meson.build b/doc/meson.build index a67686483..af09b19fd 100644 --- a/doc/meson.build +++ b/doc/meson.build @@ -22,20 +22,6 @@ if get_option('html_manual') install: true, 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 if get_option('manpages')