summaryrefslogtreecommitdiffstats
path: root/doc/arch.doc
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2010-11-06 19:00:58 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2010-11-06 19:00:58 (GMT)
commitbe602ee76006d9b8b0f6e5e75114f2ce34f7773e (patch)
tree0a8fa55f942d3a0e2f845bc77e6a357b9fb1c1c7 /doc/arch.doc
parent8a48f6c3f4827171edf41a40bfdbc03e53d9be6b (diff)
downloadDoxygen-be602ee76006d9b8b0f6e5e75114f2ce34f7773e.zip
Doxygen-be602ee76006d9b8b0f6e5e75114f2ce34f7773e.tar.gz
Doxygen-be602ee76006d9b8b0f6e5e75114f2ce34f7773e.tar.bz2
Release-1.7.2-20101106
Diffstat (limited to 'doc/arch.doc')
-rw-r--r--doc/arch.doc7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/arch.doc b/doc/arch.doc
index d257169..939a832 100644
--- a/doc/arch.doc
+++ b/doc/arch.doc
@@ -199,7 +199,7 @@ wrote the following perl script, which automatically adds or removes -d
from the correct line in the Makefile:
\verbatim
-#!/usr/local/bin/perl
+#!/usr/bin/perl
$file = shift @ARGV;
print "Toggle debugging mode for $file\n";
@@ -216,10 +216,10 @@ if (open(F,"<Makefile.libdoxygen.old")) {
}
print "Processing Makefile.libdoxygen...\n";
while (<F>) {
- if ( s/\(LEX\) -P([a-zA-Z]+)YY -t $file/(LEX) -d -P\1YY -t $file/g ) {
+ if ( s/\(LEX\) (-i )?-P([a-zA-Z]+)YY -t $file/(LEX) -d \1-P\2YY -t $file/g ) {
print "Enabling debug info for $file\n";
}
- elsif ( s/\(LEX\) -d -P([a-zA-Z]+)YY -t $file/(LEX) -P\1YY -t $file/g ) {
+ elsif ( s/\(LEX\) -d (-i )?-P([a-zA-Z]+)YY -t $file/(LEX) \1-P\2YY -t $file/g ) {
print "Disabling debug info for $file\n";
}
print G "$_";
@@ -234,6 +234,7 @@ else {
# touch the file
$now = time;
utime $now, $now, $file
+
\endverbatim
*/