~marcodalessandro76/bigdft/1.8

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

#ABINIT=/local/caliste/abinit-6.0.0-caliste
ABINIT=/local/deutsch/L_Sim/ABINIT/abinit-deutsch-6.1.0-private

for file in `find .` ; do
    tmp=`basename $file`
    abfile=`find $ABINIT -name $tmp`
    if test -n "$abfile" -a "$tmp" != "moldyn.F90" ; then
        echo $file "<-" $abfile
        cp $abfile $file
    fi
done

patch -p0 < patch