Changeset 25706
- Timestamp:
- 10/21/20 18:43:18 (4 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 9 added
- 2 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/externalpackages/autotools/install-debian-linux.sh
r24649 r25706 33 33 34 34 ./configure --prefix="${ISSM_DIR}/externalpackages/autotools/install" 35 make 36 make install 35 if [ $# -eq 0 ]; then 36 make 37 make install 38 else 39 make -j $1 40 make -j $1 install 41 fi 37 42 cd .. 38 43 … … 45 50 cd src 46 51 ./configure --prefix="${ISSM_DIR}/externalpackages/autotools/install" 47 make 48 make install 52 if [ $# -eq 0 ]; then 53 make 54 make install 55 else 56 make -j $1 57 make -j $1 install 58 fi 49 59 cd .. 50 60 … … 57 67 cd src 58 68 ./configure --prefix="${ISSM_DIR}/externalpackages/autotools/install" 59 make 60 make install 69 if [ $# -eq 0 ]; then 70 make 71 make install 72 else 73 make -j $1 74 make -j $1 install 75 fi 61 76 cd .. 62 77 … … 70 85 cd src 71 86 ./configure --prefix="${ISSM_DIR}/externalpackages/autotools/install" 72 make 73 make install 87 if [ $# -eq 0 ]; then 88 make 89 make install 90 else 91 make -j $1 92 make -j $1 install 93 fi 74 94 cd .. -
issm/trunk-jpl/jenkins/ross-debian_linux-solid_earth
r25704 r25706 86 86 # 87 87 # NOTE: 88 # - Tests 2002, 2003, 2005, 2010, 2101, and 2021 are excluded as Gmsh produces different-sized meshes on macOS and Linux for 3d objects (archives are generated on macOS). 88 # - Tests 2002, 2003, 2005, 2010, 2101, and 2021 are excluded as Gmsh produces 89 # different-sized meshes on macOS and Linux for 3d objects (archives are 90 # generated on macOS). 89 91 # - Excluding 2006 until it can be debugged (PETSc crash) 90 92 #
Note:
See TracChangeset
for help on using the changeset viewer.