#! /bin/sh

#
# Fix timestamps in mpi2c++
# We really need to integrate mpi2c++ better, 'cause this sucks.  :-(
#

fix() {
    file="$1"
    touch $file
    echo $file
    cvs commit -f -m "Fix automake-ized timestamps" $file
    sleep 1
}

echo "*** Fixing stoopid timestamps in mpi2c++..."
# 00:00
fix acinclude.m4
fix configure.in
fix aclocal.m4
fix configure

# 01:00
cd src/mpi2c++
fix Makefile.am
fix Makefile.in
fix stamp-h.in

# 02:00
cd ..
fix Makefile.am
fix Makefile.in

# 03:00
cd ../balky
fix Makefile.am
fix Makefile.in

# 04:00
cd ../contrib/test_suite
fix Makefile.am
fix Makefile.in

# 05:00
cd ../examples
fix Makefile.am
fix Makefile.in

# 06:00
cd ..
fix Makefile.am
fix Makefile.in

# 07:00
cd ..
fix Makefile.am
fix Makefile.in

