From 8f0efd7149017ece56bbd61ac1aec261799c1523 Mon Sep 17 00:00:00 2001 From: Michael Biebl Date: Tue, 17 Apr 2012 13:29:09 +0200 Subject: [PATCH] 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 --- gtk-doc.make | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.30.2