Changeset 27098


Ignore:
Timestamp:
06/23/22 19:31:01 (3 years ago)
Author:
jdquinn
Message:

BUG: Missing return type on destructor; missing recursive flag for call to copy

Location:
issm/trunk-jpl
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/packagers/linux/package-issm-linux-binaries-matlab.sh

    r27096 r27098  
    124124if [ -d ${ISSM_DIR}/externalpackages/proj/install/share/proj ]; then
    125125        mkdir ${ISSM_DIR}/share 2> /dev/null
    126         cp ${ISSM_DIR}/externalpackages/proj/install/share/proj ${ISSM_DIR}/share
     126        cp -R ${ISSM_DIR}/externalpackages/proj/install/share/proj ${ISSM_DIR}/share
    127127else
    128128        echo "PROJ not found"
  • issm/trunk-jpl/packagers/linux/package-issm-linux-binaries-python-2.sh

    r27096 r27098  
    108108if [ -d ${ISSM_DIR}/externalpackages/proj/install/share/proj ]; then
    109109        mkdir ${ISSM_DIR}/share 2> /dev/null
    110         cp ${ISSM_DIR}/externalpackages/proj/install/share/proj ${ISSM_DIR}/share
     110        cp -R ${ISSM_DIR}/externalpackages/proj/install/share/proj ${ISSM_DIR}/share
    111111else
    112112        echo "PROJ not found"
  • issm/trunk-jpl/packagers/linux/package-issm-linux-binaries-python-3.sh

    r27096 r27098  
    108108if [ -d ${ISSM_DIR}/externalpackages/proj/install/share/proj ]; then
    109109        mkdir ${ISSM_DIR}/share 2> /dev/null
    110         cp ${ISSM_DIR}/externalpackages/proj/install/share/proj ${ISSM_DIR}/share
     110        cp -R ${ISSM_DIR}/externalpackages/proj/install/share/proj ${ISSM_DIR}/share
    111111else
    112112        echo "PROJ not found"
  • issm/trunk-jpl/packagers/mac/package-issm-mac-binaries-matlab.sh

    r27096 r27098  
    129129if [ -d ${ISSM_DIR}/externalpackages/proj/install/share/proj ]; then
    130130        mkdir ${ISSM_DIR}/share 2> /dev/null
    131         cp ${ISSM_DIR}/externalpackages/proj/install/share/proj ${ISSM_DIR}/share
     131        cp -R ${ISSM_DIR}/externalpackages/proj/install/share/proj ${ISSM_DIR}/share
    132132else
    133133        echo "PROJ not found"
  • issm/trunk-jpl/packagers/mac/package-issm-mac-binaries-python-2.sh

    r27096 r27098  
    121121if [ -d ${ISSM_DIR}/externalpackages/proj/install/share/proj ]; then
    122122        mkdir ${ISSM_DIR}/share 2> /dev/null
    123         cp ${ISSM_DIR}/externalpackages/proj/install/share/proj ${ISSM_DIR}/share
     123        cp -R ${ISSM_DIR}/externalpackages/proj/install/share/proj ${ISSM_DIR}/share
    124124else
    125125        echo "PROJ not found"
  • issm/trunk-jpl/packagers/mac/package-issm-mac-binaries-python-3.sh

    r27096 r27098  
    121121if [ -d ${ISSM_DIR}/externalpackages/proj/install/share/proj ]; then
    122122        mkdir ${ISSM_DIR}/share 2> /dev/null
    123         cp ${ISSM_DIR}/externalpackages/proj/install/share/proj ${ISSM_DIR}/share
     123        cp -R ${ISSM_DIR}/externalpackages/proj/install/share/proj ${ISSM_DIR}/share
    124124else
    125125        echo "PROJ not found"
  • issm/trunk-jpl/src/c/analyses/SealevelchangeAnalysis.cpp

    r27097 r27098  
    99
    1010/*Model processing*/
    11 SealevelchangeAnalysis::~SealevelchangeAnalysis(){/*{{{*/
     11void SealevelchangeAnalysis::~SealevelchangeAnalysis(){/*{{{*/
    1212
    1313        BarystaticContributions* barycontrib=NULL;
Note: See TracChangeset for help on using the changeset viewer.