Changeset 27089
- Timestamp:
- 06/22/22 11:11:51 (3 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/packagers/linux/package-issm-linux-binaries-matlab.sh
r27086 r27089 110 110 111 111 echo "Moving PROJ assets to share/" 112 if [ - f${ISSM_DIR}/externalpackages/share/proj ]; then112 if [ -d ${ISSM_DIR}/externalpackages/share/proj ]; then 113 113 mkdir ${ISSM_DIR}/share 2> /dev/null 114 cp ${ISSM_DIR}/externalpackages/share/proj $ ISSM_DIR/share114 cp ${ISSM_DIR}/externalpackages/share/proj ${ISSM_DIR}/share 115 115 else 116 116 echo "PROJ not found" … … 128 128 129 129 # Run tests, redirecting output to logfile and suppressing output to console 130 ${MATLAB_PATH}/bin/matlab -nojvm -nosplash -nojvm -r "try, addpath ${ISSM_DIR}/bin ${ISSM_DIR}/lib ; runme(${MATLAB_NROPTIONS}); exit; catch me,fprintf('%s',getReport(me)); exit; end" &> matlab.log130 ${MATLAB_PATH}/bin/matlab -nojvm -nosplash -nojvm -r "try, addpath ${ISSM_DIR}/bin ${ISSM_DIR}/lib ${ISSM_DIR}/share; runme(${MATLAB_NROPTIONS}); exit; catch me,fprintf('%s',getReport(me)); exit; end" &> matlab.log 131 131 132 132 # Check that MATLAB did not exit in error -
issm/trunk-jpl/packagers/linux/package-issm-linux-binaries-python-2.sh
r27086 r27089 106 106 107 107 echo "Moving PROJ assets to share/" 108 if [ - f${ISSM_DIR}/externalpackages/share/proj ]; then108 if [ -d ${ISSM_DIR}/externalpackages/share/proj ]; then 109 109 mkdir ${ISSM_DIR}/share 2> /dev/null 110 cp ${ISSM_DIR}/externalpackages/share/proj $ ISSM_DIR/share110 cp ${ISSM_DIR}/externalpackages/share/proj ${ISSM_DIR}/share 111 111 else 112 112 echo "PROJ not found" -
issm/trunk-jpl/packagers/linux/package-issm-linux-binaries-python-3.sh
r27086 r27089 106 106 107 107 echo "Moving PROJ assets to share/" 108 if [ - f${ISSM_DIR}/externalpackages/share/proj ]; then108 if [ -d ${ISSM_DIR}/externalpackages/share/proj ]; then 109 109 mkdir ${ISSM_DIR}/share 2> /dev/null 110 cp ${ISSM_DIR}/externalpackages/share/proj $ ISSM_DIR/share110 cp ${ISSM_DIR}/externalpackages/share/proj ${ISSM_DIR}/share 111 111 else 112 112 echo "PROJ not found" -
issm/trunk-jpl/packagers/mac/package-issm-mac-binaries-matlab.sh
r27086 r27089 127 127 128 128 echo "Moving PROJ assets to share/" 129 if [ - f${ISSM_DIR}/externalpackages/share/proj ]; then129 if [ -d ${ISSM_DIR}/externalpackages/share/proj ]; then 130 130 mkdir ${ISSM_DIR}/share 2> /dev/null 131 cp ${ISSM_DIR}/externalpackages/share/proj $ ISSM_DIR/share131 cp ${ISSM_DIR}/externalpackages/share/proj ${ISSM_DIR}/share 132 132 else 133 133 echo "PROJ not found" … … 142 142 143 143 # Run tests, redirecting output to logfile and suppressing output to console 144 ${MATLAB_PATH}/bin/matlab -nojvm -nosplash -nojvm -r "try, addpath ${ISSM_DIR}/bin ${ISSM_DIR}/lib ; runme(${MATLAB_NROPTIONS}); exit; catch me,fprintf('%s',getReport(me)); exit; end" &> matlab.log144 ${MATLAB_PATH}/bin/matlab -nojvm -nosplash -nojvm -r "try, addpath ${ISSM_DIR}/bin ${ISSM_DIR}/lib ${ISSM_DIR}/share; runme(${MATLAB_NROPTIONS}); exit; catch me,fprintf('%s',getReport(me)); exit; end" &> matlab.log 145 145 146 146 # Check that MATLAB did not exit in error -
issm/trunk-jpl/packagers/mac/package-issm-mac-binaries-python-2.sh
r27086 r27089 119 119 120 120 echo "Moving PROJ assets to share/" 121 if [ - f${ISSM_DIR}/externalpackages/share/proj ]; then121 if [ -d ${ISSM_DIR}/externalpackages/share/proj ]; then 122 122 mkdir ${ISSM_DIR}/share 2> /dev/null 123 cp ${ISSM_DIR}/externalpackages/share/proj $ ISSM_DIR/share123 cp ${ISSM_DIR}/externalpackages/share/proj ${ISSM_DIR}/share 124 124 else 125 125 echo "PROJ not found" -
issm/trunk-jpl/packagers/mac/package-issm-mac-binaries-python-3.sh
r27086 r27089 119 119 120 120 echo "Moving PROJ assets to share/" 121 if [ - f${ISSM_DIR}/externalpackages/share/proj ]; then121 if [ -d ${ISSM_DIR}/externalpackages/share/proj ]; then 122 122 mkdir ${ISSM_DIR}/share 2> /dev/null 123 cp ${ISSM_DIR}/externalpackages/share/proj $ ISSM_DIR/share123 cp ${ISSM_DIR}/externalpackages/share/proj ${ISSM_DIR}/share 124 124 else 125 125 echo "PROJ not found" -
issm/trunk-jpl/src/m/modules/CoordTransform.m
r26959 r27089 31 31 end 32 32 33 % If this function is called from within one of our distributable packages, set 34 % the 'PROJ_LIB' environment variable so that the PROJ binary can find the 35 % assets it needs 36 if isdir('share/proj') 37 setenv('PROJ_LIB', what('share/proj').path); 38 end 39 33 40 % Call mex module 34 41 [xout, yout] = CoordTransform_matlab(xin,yin,projin,projout);
Note:
See TracChangeset
for help on using the changeset viewer.