[go: up one dir, main page]

File: doxy4win.pl

package info (click to toggle)
coin3 3.1.3-2.2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 48,368 kB
  • sloc: cpp: 314,329; ansic: 15,927; sh: 13,635; makefile: 8,772; perl: 2,149; lex: 1,302; lisp: 1,247; yacc: 184; xml: 175; sed: 68
file content (11 lines) | stat: -rwxr-xr-x 215 bytes parent folder | download | duplicates (21)
1
2
3
4
5
6
7
8
9
10
11
#! /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/;