debian/patches/071_fix-installation-of-HTML-images.patch: Fix installation

of HTML images for out-of-tree builds when using absolute paths.
Closes: #656803
This commit is contained in:
Michael Biebl 2012-04-17 17:15:57 +00:00
parent ebadd6ec11
commit d152a5c1c4
3 changed files with 35 additions and 1 deletions

5
debian/changelog vendored
View File

@ -17,8 +17,11 @@ gtk+3.0 (3.4.1-1) UNRELEASED; urgency=low
* Update Vcs-* URLs.
* Remove --enable-xinput configure flag as xinput support is no longer
optional and this flag has thus been removed upstream.
* debian/patches/071_fix-installation-of-HTML-images.patch: Fix installation
of HTML images for out-of-tree builds when using absolute paths.
Closes: #656803
-- Michael Biebl <biebl@debian.org> Mon, 16 Apr 2012 15:19:01 +0200
-- Michael Biebl <biebl@debian.org> Tue, 17 Apr 2012 19:13:46 +0200
gtk+3.0 (3.4.0-1) experimental; urgency=low

View File

@ -0,0 +1,30 @@
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.
https://bugzilla.gnome.org/show_bug.cgi?id=674163
---
gtk-doc.make | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gtk-doc.make b/gtk-doc.make
index 6664c16..e401468 100644
--- a/gtk-doc.make
+++ b/gtk-doc.make
@@ -176,8 +176,8 @@ html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
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;
@echo ' DOC Fixing cross-references'
--
1.7.10

View File

@ -9,3 +9,4 @@
060_ignore-random-icons.patch
061_multiarch_module_fallback.patch
070_revert-widget-set-up-signals-after-initializing.patch
071_fix-installation-of-HTML-images.patch