Files
gtk3/debian/patches/071_fix-installation-of-HTML-images.patch
Sjoerd Simons c112dbb40e * New upstream release
* debian/patches/044_tracker_fts.patch:
  + Dropped, upstream also defaults to FTS tracker queries now
* debian/control: Update build-dependency versions
* debian/control: Add libexpoxy and libegl1-mesa-dev to build-depencies
* debian/libgtk-3-0.symbols: Updated
* d/p/notify-test-Don-t-test-object-relying-on-dbus-connec.patch:
  + Added. Fix test failure when no session bus is running (bgo#749009)
2015-05-06 11:02:12 +00:00

27 lines
928 B
Diff

From 4c220ef6650afeba334570ad00db0a95c9ba38e6 Mon Sep 17 00:00:00 2001
From: Michael Biebl <biebl@debian.org>
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
---
gtk-doc.make | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- a/gtk-doc.make
+++ b/gtk-doc.make
@@ -182,8 +182,8 @@
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)