mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
Fix another bug in make install for fwg (complained becuase there were no pngs to install).
Original commit message from CVS: Fix another bug in make install for fwg (complained becuase there were no pngs to install). I should have got up more slowly today...
This commit is contained in:
parent
080754de3e
commit
44e2bda95f
1 changed files with 8 additions and 2 deletions
|
@ -73,14 +73,20 @@ htmlinst:
|
|||
$(mkinstalldirs) $(DESTDIR)$(docdatadir)/$(manualname) ; \
|
||||
$(mkinstalldirs) $(DESTDIR)$(docdatadir)/$(manualname)/images ; \
|
||||
$(INSTALL_DATA) $(manualname)/*.html $(DESTDIR)$(docdatadir)/$(manualname) ; \
|
||||
for a in $(png_files); do $(INSTALL_DATA) $$a $(DESTDIR)$(docdatadir)/$(manualname)/images ; done \
|
||||
for a in "x" $(png_files); do \
|
||||
if [ "x$$a" != "xx" ] ; then \
|
||||
$(INSTALL_DATA) $$a $(DESTDIR)$(docdatadir)/$(manualname)/images ; \
|
||||
fi; done \
|
||||
else \
|
||||
if [ -r $(srcdir)/$(manualname)/$(htmlname) ] ; then \
|
||||
echo "Installing $(srcdir)/$(manualname)" ; \
|
||||
$(mkinstalldirs) $(DESTDIR)$(docdatadir)/$(manualname) ; \
|
||||
$(mkinstalldirs) $(DESTDIR)$(docdatadir)/$(manualname)/images ; \
|
||||
$(INSTALL_DATA) $(srcdir)/$(manualname)/*.html $(DESTDIR)$(docdatadir)/$(manualname) ; \
|
||||
for a in $(png_files); do $(INSTALL_DATA) $$a $(DESTDIR)$(docdatadir)/$(manualname)/images ; done \
|
||||
for a in "x" $(png_files); do \
|
||||
if [ "x$$a" != "xx" ] ; then \
|
||||
$(INSTALL_DATA) $$a $(DESTDIR)$(docdatadir)/$(manualname)/images ; \
|
||||
fi; done \
|
||||
else \
|
||||
echo "NOT installing HTML documentation: not present, and can't generate" ; \
|
||||
fi \
|
||||
|
|
Loading…
Reference in a new issue