[svn-r391] Testing CVS perl log script, ignore this message

This commit is contained in:
Quincey Koziol 1998-05-06 12:13:36 -05:00
parent 6caf498fc5
commit 503d772b53

View File

@ -1,9 +1,11 @@
#! /usr/local/bin/perl -w
require 5.003;
use Cwd;
$hdr = "../src/H5public.h";
$bak = "../src/H5public.h~";
$tmp = "../src/H5public.$$";
($cwd)=(cwd()=~m#(.*?hdf5)/.*#)
$hdr = "$cwd/src/H5public.h";
$bak = "$cwd/src/H5public.h~";
$tmp = "$cwd/src/H5public.$$";
# Open files
open OLD, $hdr or die "cannot read $hdr";