repo.or.cz
/
bioperl-live.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
small pod fix
[bioperl-live.git]
/
doc
/
makedoc.PL
blob
d3cf7b8d2185790858eed4a9b79792742c66703f
1
#!/usr/bin/perl
2
3
use
lib
"."
;
4
use
strict
;
5
6
require
Bio
::
Root
::
Version
;
7
8
foreach
(
@ARGV
) {
9
`perl -pi -e 's/\\\@\\\@VERSION\\\@\\\@/$Bio::Root::Version::VERSION/g;' "
$_
"`
;
10
}
11
12
__END__