summaryrefslogtreecommitdiff
path: root/debian/patches
diff options
context:
space:
mode:
authorReinhard Tartler <siretart@tauware.de>2009-03-31 21:45:56 +0200
committerReinhard Tartler <siretart@tauware.de>2009-03-31 21:45:56 +0200
commitbfe1351d8b032bdfc28ff067f9b3aa8f8156ec1d (patch)
treeb7e4814a2fab39ae51eab0fc788e2ea6e38932c9 /debian/patches
parent2e1992f26f211ce4d0f5f3fa3bda4b1176c554ce (diff)
add patch to fix exception code text file generation
Diffstat (limited to 'debian/patches')
-rw-r--r--debian/patches/04-fix-exception-code-generation.diff19
1 files changed, 19 insertions, 0 deletions
diff --git a/debian/patches/04-fix-exception-code-generation.diff b/debian/patches/04-fix-exception-code-generation.diff
new file mode 100644
index 00000000..fb367dd8
--- /dev/null
+++ b/debian/patches/04-fix-exception-code-generation.diff
@@ -0,0 +1,19 @@
+=== modified file 'documentation/generate_except_xml.pl'
+--- old/documentation/generate_except_xml.pl 2009-03-31 13:58:19 +0000
++++ new/documentation/generate_except_xml.pl 2009-03-31 19:44:12 +0000
+@@ -1,7 +1,7 @@
+ #!/usr/bin/perl -w
+ use strict;
+
+-open (EXCEPT, "<../../ExceptionCodes.txt") or die "Can't open ../../ExceptionCodes.txt: $!\n";
++open (EXCEPT, "<../ExceptionCodes.txt") or die "Can't open ../ExceptionCodes.txt: $!\n";
+ open (DOCBOOK, ">ExceptionCodes.xml") or die "Can't open Exceptioncodes.xml for writing: $!\n";
+
+ print DOCBOOK <<EOD;
+@@ -71,4 +71,3 @@ print DOCBOOK "</appendix>\n";
+
+ close EXCEPT;
+ close DOCBOOK;
+-
+\ No newline at end of file
+