diff options
author | B. Watson <yalhcru@gmail.com> | 2022-02-23 16:46:14 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-02-25 22:58:03 +0700 |
commit | 304ba445d13d2ca1a19651ffe8e16343907ab883 (patch) | |
tree | d7576831b701e932b54241518f25080ad33bb64f /audio/mpd/mpd.SlackBuild | |
parent | f84a4648ae0374a36d30fd67856719fe4feb313b (diff) |
audio/mpd: Fix build when Sphinx not installed.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio/mpd/mpd.SlackBuild')
-rw-r--r-- | audio/mpd/mpd.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/mpd/mpd.SlackBuild b/audio/mpd/mpd.SlackBuild index f332d1be06..3a85c205a5 100644 --- a/audio/mpd/mpd.SlackBuild +++ b/audio/mpd/mpd.SlackBuild @@ -124,7 +124,7 @@ rm -rf $PKG/usr/share/doc # Use sample config, without overwriting install -D -m 644 doc/mpdconf.example $PKG/etc/mpd.conf.new -gzip -9 $PKG/usr/man/man*/* +[ -d $PKG/usr/man ] && gzip -9 $PKG/usr/man/man*/* cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |