From: Michael Biebl Date: Tue, 17 Apr 2012 11:29:09 +0000 (+0200) Subject: Fix installation of HTML images for absolute paths X-Git-Tag: archive/raspbian/3.22.6-1+rpi1~1^2^2^2~4 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=deaa6548504cef5d388a30f066a96ccdd72535b0;p=gtk%2B3.0.git Fix installation of HTML images for absolute paths when using out-of-tree builds. Bug: https://bugzilla.gnome.org/show_bug.cgi?id=674163 Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=656803 Gbp-Pq: Name 071_fix-installation-of-HTML-images.patch --- diff --git a/gtk-doc.make b/gtk-doc.make index e4a12a5b25..1f3dbc2ebf 100644 --- a/gtk-doc.make +++ b/gtk-doc.make @@ -193,8 +193,8 @@ html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_con if test -f $(abs_srcdir)/$$file ; then \ cp $(abs_srcdir)/$$file $(abs_builddir)/html; \ fi; \ - if test -f $(abs_builddir)/$$file ; then \ - cp $(abs_builddir)/$$file $(abs_builddir)/html; \ + if test -f $$file ; then \ + cp $$file $(abs_builddir)/html; \ fi; \ done; $(GTK_DOC_V_XREF)gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)