diff --git a/.gitignore b/.gitignore index ec46862766997f516f0978510a4d8d14708c5469..195dbe74ee25657bbe6c07e6685e43d0cf8b4279 100644 --- a/.gitignore +++ b/.gitignore @@ -58,8 +58,8 @@ doc/Doxygen/DTAGS # Untracked configuration files /etc/prefs.csh /etc/prefs.sh -/etc/config/prefs.csh -/etc/config/prefs.sh +/etc/config.csh/prefs.csh +/etc/config.sh/prefs.sh # Source packages - anywhere *.tar.bz2 diff --git a/bin/tools/foamConfigurePaths b/bin/tools/foamConfigurePaths index 34c6fc200431223d26407fbbefe37d22ff7f78f4..700ab15273a40ad092fe8096168c5b95ed327bd1 100755 --- a/bin/tools/foamConfigurePaths +++ b/bin/tools/foamConfigurePaths @@ -146,7 +146,7 @@ do paraviewInstall="$2" # replace ParaView_DIR=... _inlineSed \ - etc/config/paraview.sh \ + etc/config.sh/paraview \ 'ParaView_DIR=.*' \ 'ParaView_DIR='"$paraviewInstall" \ "Replacing ParaView_DIR setting by '$paraviewInstall'" @@ -157,7 +157,7 @@ do paraviewVersion="$2" # replace ParaView_VERSION=... _inlineSed \ - etc/config/paraview.sh \ + etc/config.sh/paraview \ 'ParaView_VERSION=.*' \ 'ParaView_VERSION='"$paraviewVersion" \ "Replacing ParaView_VERSION setting by '$paraviewVersion'" @@ -167,7 +167,7 @@ do [ "$#" -ge 2 ] || usage "'$1' option requires an argument" scotchVersion="$2" _inlineSed \ - etc/config/scotch.sh \ + etc/config.sh/scotch \ 'SCOTCH_VERSION=.*' \ 'SCOTCH_VERSION='"$scotchVersion" \ "Replacing SCOTCH_VERSION setting by '$scotchVersion'" @@ -177,7 +177,7 @@ do [ "$#" -ge 2 ] || usage "'$1' option requires an argument" scotchArchPath="$2" _inlineSed \ - etc/config/scotch.sh \ + etc/config.sh/scotch \ 'SCOTCH_ARCH_PATH=.*' \ 'SCOTCH_ARCH_PATH='"$scotchArchPath" \ "Replacing SCOTCH_ARCH_PATH setting by '$scotchArchPath'" diff --git a/etc/config.sh/paraview b/etc/config.sh/paraview index 33fb031d242d31130854069cf5e48d5410c9c8ba..1f23bb61ae9e66ad33ce57dc862839f15c3f7279 100644 --- a/etc/config.sh/paraview +++ b/etc/config.sh/paraview @@ -55,8 +55,8 @@ done #export ParaView_VERSION=4.0.1 #export ParaView_VERSION=4.1.0 #export ParaView_VERSION=4.3.1 -export ParaView_VERSION=4.4.0 -#export ParaView_VERSION=5.0.0 +#export ParaView_VERSION=4.4.0 +export ParaView_VERSION=5.0.0 export ParaView_MAJOR=detect diff --git a/src/fvAgglomerationMethods/Allwmake b/src/fvAgglomerationMethods/Allwmake index 16340f0efb879c170c914e7e939f03d4d2c35a33..f80a7e5ffd825b774945ed698b22df67a1abb00c 100755 --- a/src/fvAgglomerationMethods/Allwmake +++ b/src/fvAgglomerationMethods/Allwmake @@ -17,13 +17,13 @@ wmake $targetType pairPatchAgglomeration ## get SCOTCH_VERSION, SCOTCH_ARCH_PATH -if settings=`$WM_PROJECT_DIR/bin/foamEtcFile config/scotch.sh` +if settings=`$WM_PROJECT_DIR/bin/foamEtcFile config.sh/scotch` then . $settings echo "using SCOTCH_ARCH_PATH=$SCOTCH_ARCH_PATH" else echo - echo "Error: no config/scotch.sh settings" + echo "Error: no config.sh/scotch settings" echo fi diff --git a/src/parallel/decompose/Allwmake b/src/parallel/decompose/Allwmake index 603ee5277b812626c31753f74e6cd488c7f0a4f0..4ce2aa27a65411786c76c4a52f726109f6cfacb2 100755 --- a/src/parallel/decompose/Allwmake +++ b/src/parallel/decompose/Allwmake @@ -6,13 +6,13 @@ targetType=libso . $WM_PROJECT_DIR/wmake/scripts/AllwmakeParseArguments # get SCOTCH_VERSION, SCOTCH_ARCH_PATH -if settings=`$WM_PROJECT_DIR/bin/foamEtcFile config/scotch.sh` +if settings=`$WM_PROJECT_DIR/bin/foamEtcFile config.sh/scotch` then . $settings echo "using SCOTCH_ARCH_PATH=$SCOTCH_ARCH_PATH" else echo - echo "Error: no config/scotch.sh settings" + echo "Error: no config.sh/scotch settings" echo fi diff --git a/src/parallel/decompose/metisDecomp/Allwmake b/src/parallel/decompose/metisDecomp/Allwmake index 549e4229b8a5d15b8f153a3114e8f4229bad9e22..8259ce1436ef4b45500cf27e2ca2edbbea025319 100755 --- a/src/parallel/decompose/metisDecomp/Allwmake +++ b/src/parallel/decompose/metisDecomp/Allwmake @@ -6,7 +6,7 @@ targetType=libso . $WM_PROJECT_DIR/wmake/scripts/AllwmakeParseArguments # get METIS_VERSION, METIS_ARCH_PATH -if settings=`$WM_PROJECT_DIR/bin/foamEtcFile config/metis.sh` +if settings=`$WM_PROJECT_DIR/bin/foamEtcFile config.sh/metis` then . $settings echo "using METIS_ARCH_PATH=$METIS_ARCH_PATH" @@ -16,7 +16,7 @@ then fi else echo - echo "Error: no config/metis.sh settings" + echo "Error: no config.sh/metis settings" echo fi diff --git a/src/renumber/Allwmake b/src/renumber/Allwmake index ec1acb8320d4527265b0bd40c44d46b68558ec43..01200e712ed7de05173121cb4381b11245f3d279 100755 --- a/src/renumber/Allwmake +++ b/src/renumber/Allwmake @@ -6,13 +6,13 @@ targetType=libso . $WM_PROJECT_DIR/wmake/scripts/AllwmakeParseArguments ## get ZOLTAN_ARCH_PATH -#if settings=`$WM_PROJECT_DIR/bin/foamEtcFile config/zoltan.sh` +#if settings=`$WM_PROJECT_DIR/bin/foamEtcFile config.sh/zoltan` #then # . $settings # echo "using ZOLTAN_ARCH_PATH=$ZOLTAN_ARCH_PATH" #else # echo -# echo "Error: no config/zoltan.sh settings" +# echo "Error: no config.sh/zoltan settings" # echo #fi