Changeset 22024


Ignore:
Timestamp:
08/30/17 12:53:10 (8 years ago)
Author:
dlcheng
Message:

CHG: Adding m4 to install-win.sh

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/externalpackages/autotools/install-win.sh

    r19588 r22024  
    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.