071_fix-installation-of-HTML-images.patch 1.1 KB

1234567891011121314151617181920212223242526272829
  1. From 4c220ef6650afeba334570ad00db0a95c9ba38e6 Mon Sep 17 00:00:00 2001
  2. From: Michael Biebl <biebl@debian.org>
  3. Date: Tue, 17 Apr 2012 13:29:09 +0200
  4. Subject: [PATCH] Fix installation of HTML images for absolute paths
  5. when using out-of-tree builds.
  6. Bug: https://bugzilla.gnome.org/show_bug.cgi?id=674163
  7. Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=656803
  8. ---
  9. gtk-doc.make | 4 ++--
  10. 1 file changed, 2 insertions(+), 2 deletions(-)
  11. Index: gtk+-3.6.4/gtk-doc.make
  12. ===================================================================
  13. --- gtk+-3.6.4.orig/gtk-doc.make 2013-01-10 16:03:56.697595578 +1300
  14. +++ gtk+-3.6.4/gtk-doc.make 2013-01-10 16:03:56.693595578 +1300
  15. @@ -173,8 +173,8 @@
  16. if test -f $(abs_srcdir)/$$file ; then \
  17. cp $(abs_srcdir)/$$file $(abs_builddir)/html; \
  18. fi; \
  19. - if test -f $(abs_builddir)/$$file ; then \
  20. - cp $(abs_builddir)/$$file $(abs_builddir)/html; \
  21. + if test -f $$file ; then \
  22. + cp $$file $(abs_builddir)/html; \
  23. fi; \
  24. done;
  25. $(GTK_DOC_V_XREF)gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)