mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-12-22 11:33:29 +01:00
fixed error
This commit is contained in:
parent
7fcd03b911
commit
b16edd29e7
@ -22,15 +22,25 @@ else
|
|||||||
echo "Files that will be modified:"
|
echo "Files that will be modified:"
|
||||||
echo $list_files
|
echo $list_files
|
||||||
|
|
||||||
|
# Flags that must be added
|
||||||
|
FLAGS=$(./check_required_setup.sh $COMP)
|
||||||
|
|
||||||
# Add the flags
|
# Add the flags
|
||||||
for file in $list_files
|
for file in $list_files
|
||||||
do
|
do
|
||||||
echo $file
|
echo $file
|
||||||
ACTUAL=$(grep "IRPF90_FLAGS : --openmp" $file)
|
BASE="IRPF90_FLAGS : --ninja"
|
||||||
FLAGS=$(./check_required_setup.sh $COMP)
|
ACTUAL=$(grep "$BASE" $file)
|
||||||
|
|
||||||
|
# To have only one time each flag
|
||||||
|
grep " -DSET_MAX_ACT" $file && ${ACTUAL/" -DSET_MAX"/""}
|
||||||
|
grep " -DSET_NESTED" $file && ${ACTUAL/" -DSET_NESTED"/""}
|
||||||
SPACE=" "
|
SPACE=" "
|
||||||
BASE="IRPF90_FLAGS : --openmp"
|
|
||||||
NEW=${BASE}${SPACE}${FLAGS}
|
NEW=${ACTUAL}${SPACE}${FLAGS}
|
||||||
|
|
||||||
|
# Debug
|
||||||
|
#echo ${NEW}
|
||||||
|
|
||||||
sed "s/${ACTUAL}/${NEW}/" $file
|
sed "s/${ACTUAL}/${NEW}/" $file
|
||||||
# -i # to change the files
|
# -i # to change the files
|
||||||
|
Loading…
Reference in New Issue
Block a user