From a2a0f4cae7a7f06dff7a056bd66d4240e347da97 Mon Sep 17 00:00:00 2001
From: Christian Engwer <christi@dune-project.org>
Date: Wed, 8 Dec 2004 17:01:53 +0000
Subject: [PATCH] Finally found the bug in Doxydep... not it also rebuilds the
 docs after a file is removed

[[Imported from SVN: r1231]]
---
 doc/Doxydep | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/doc/Doxydep b/doc/Doxydep
index da4f2f30e..c8d0c68b4 100755
--- a/doc/Doxydep
+++ b/doc/Doxydep
@@ -20,7 +20,8 @@ if (! $target) { $target = $defaulttarget };
 sub addDep ($) {
 	my $dep = shift;
 	if (defined($dep) && ! $dep eq "") {
-		print DEPFILE "$target: $dep\n";
+		print DEPFILE "$target: $dep\n\n";
+		print DEPFILE "$dep:\n\n";
 	}
 }
 
-- 
GitLab