summaryrefslogtreecommitdiff
path: root/textproc/gtk-doc/patches/patch-ab
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/gtk-doc/patches/patch-ab')
-rw-r--r--textproc/gtk-doc/patches/patch-ab31
1 files changed, 0 insertions, 31 deletions
diff --git a/textproc/gtk-doc/patches/patch-ab b/textproc/gtk-doc/patches/patch-ab
deleted file mode 100644
index a7a5c159174..00000000000
--- a/textproc/gtk-doc/patches/patch-ab
+++ /dev/null
@@ -1,31 +0,0 @@
-$NetBSD: patch-ab,v 1.1 2010/01/22 14:21:32 wiz Exp $
-
-From d1a042fbd75b7f8d44293fbee01e783be79d884c Mon Sep 17 00:00:00 2001
-From: Nicola Fontana <ntd@entidi.it>
-Date: Mon, 03 Aug 2009 13:32:36 +0000
-Subject: gtkdoc-scan: touch MODULE-overrides.txt when missing. Fixes #590625
-
-gtk-doc.make puts $(DOC_MODULE)-overrides.txt in EXTRA_DIST, so this
-file must exist to be able to "make dist".
-
---- gtkdoc-scan.in.orig 2009-11-25 19:18:11.000000000 +0000
-+++ gtkdoc-scan.in
-@@ -180,12 +180,12 @@ if ($REBUILD_SECTIONS || ! -e $sections_
- `cp $old_decl_list $sections_file`;
- }
-
--# If there is no MODULE-overrides.txt file we create an empty one.
--# FIXME: why?
--#my $overrides_file = "${OUTPUT_DIR}/$MODULE-overrides.txt";
--#if (! -e $overrides_file) {
--# `touch $overrides_file`;
--#}
-+# If there is no MODULE-overrides.txt file we create an empty one
-+# because EXTRA_DIST in gtk-doc.make requires it.
-+my $overrides_file = "${OUTPUT_DIR}/$MODULE-overrides.txt";
-+if (! -e $overrides_file) {
-+ `touch $overrides_file`;
-+}
-
-
-