Skip to content

Commit b8d4c37

Browse files
committed
remove use_wget option
1 parent 92cd695 commit b8d4c37

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

auto_build.sh

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,7 @@ grab()
4444
{
4545
url=$1
4646
file=$2
47-
if [ $use_wget -eq 1 ]; then
48-
wget $url/$file
49-
else
50-
cp $script_dir/$file ./
51-
fi
47+
cp $script_dir/$file ./
5248
}
5349

5450

build_options.sh

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ set_bgl_options()
1010
base=$HOME/source/autobuild2
1111
toolchain_file=toolchain-xlc-bgl.cmake
1212
make_command="make -j2"
13-
use_wget=0
1413
paraview_cross_cxx_flags="-O2 -qstrict -qarch=440 -qtune=440 -qcpluscmt"
1514
osmesa_config_name=bgl-osmesa-xlc
1615
}
@@ -22,7 +21,6 @@ set_bgp_options()
2221
base=/scratch/pmarion/build-bgp
2322
toolchain_file=BlueGeneP-xl-static.cmake
2423
make_command="make -j2"
25-
use_wget=0
2624
paraview_cross_cxx_flags="-O2 -qstrict -qarch=450d -qtune=450 -qcpluscmt"
2725
osmesa_config_name=bgp-osmesa-xlc
2826
}
@@ -32,15 +30,13 @@ set_eureka_options()
3230
{
3331
base=/scratch/pmarion/test_build
3432
make_command="make -j2"
35-
use_wget=0
3633
}
3734

3835
set_jaguarpf_options()
3936
{
4037
base=/ccs/proj/tur013/marionp
4138
toolchain_file=cray-cnl-pgi-toolchain.cmake
4239
make_command="make -j2"
43-
use_wget=0
4440
paraview_cross_cxx_flags="-O2"
4541
osmesa_config_name=craycle-osmesa-pgi
4642
}
@@ -50,10 +46,10 @@ set_jaguarpfgcc_options()
5046
base=/ccs/proj/tur013/marionp/gccbuild
5147
toolchain_file=cray-cnl-gnu-toolchain.cmake
5248
make_command="make -j2"
53-
use_wget=0
5449
paraview_cross_cxx_flags="-O2"
5550
osmesa_config_name=craycle-osmesa-gnu
5651
}
5752

5853

5954
set_${platform}_options
55+

0 commit comments

Comments
 (0)