[go: up one dir, main page]

File: doxy4win.pl

package info (click to toggle)
soqt 1.3.0-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 8,444 kB
  • ctags: 5,628
  • sloc: cpp: 21,475; sh: 9,312; makefile: 1,448; ansic: 1,291; perl: 8
file content (12 lines) | stat: -rwxr-xr-x 216 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
#! /usr/bin/perl -p -i.bak

sub cygpath {
  $path=`CYGWIN= cygpath -w "$_[0]"`;
  chop($path);
  $path;
}

s/\<PATH\>([^ ]*)/&cygpath($1)/eg;
s/^HTML_OUTPUT.*/HTML_OUTPUT = html/;
s/^MAN_OUTPUT.*/MAN_OUTPUT = man/;