mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 04:36:20 +00:00
don't try to install html docs when there are none
Original commit message from CVS: don't try to install html docs when there are none
This commit is contained in:
parent
40a15c4e42
commit
b1a266a63d
1 changed files with 5 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
||||||
# I really don't like this hack, but automake doesn't seem to want to
|
# I really don't like this hack, but automake doesn't seem to want to
|
||||||
# install directory trees :(
|
# install directory trees :(
|
||||||
|
|
||||||
|
if DOC_HTML
|
||||||
install-data-local: html
|
install-data-local: html
|
||||||
mkdir -p $(docdir)
|
mkdir -p $(docdir)
|
||||||
cp -pr $(HTML_DAT) $(docdir)
|
cp -pr $(HTML_DAT) $(docdir)
|
||||||
|
@ -9,3 +10,7 @@ install-data-local: html
|
||||||
uninstall-local:
|
uninstall-local:
|
||||||
for part in $(HTML_DAT); do rm -rf $(docdir)/$$part; done
|
for part in $(HTML_DAT); do rm -rf $(docdir)/$$part; done
|
||||||
rmdir $(docdir)
|
rmdir $(docdir)
|
||||||
|
else
|
||||||
|
install-data-local:
|
||||||
|
uninstall-local:
|
||||||
|
endif
|
||||||
|
|
Loading…
Reference in a new issue