Changeset 20619


Ignore:
Timestamp:
05/16/16 16:37:42 (9 years ago)
Author:
Mathieu Morlighem
Message:

NEW: added m4 to list of packages needed to install (problem on discover and greenplanet where m4 is too old

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/trunk-jpl/externalpackages/autotools/install.sh ΒΆ

    r18206 r20619  
    66
    77export PATH="$ISSM_DIR/externalpackages/autotools/install/bin:$PATH"
     8
     9#install m4
     10echo " === INSTALLING M4 =="
     11rm -rf src
     12$ISSM_DIR/scripts/DownloadExternalPackage.py 'http://issm.jpl.nasa.gov/files/externalpackages/m4-1.4.17.tar.gz' 'm4-1.4.17.tar.gz'
     13tar -zxvf m4-1.4.17.tar.gz
     14mv m4-1.4.17 src
     15cd src
     16./configure --prefix="$ISSM_DIR/externalpackages/autotools/install"
     17make
     18make install
     19cd ..
    820
    921#install autoconf
Note: See TracChangeset for help on using the changeset viewer.