source: issm/trunk-jpl/externalpackages/autoconf/install.sh@ 12156

Last change on this file since 12156 was 12156, checked in by Mathieu Morlighem, 13 years ago

Changing ISSM_TIER to ISSM_DIR

  • Property svn:executable set to *
File size: 315 bytes
Line 
1#!/bin/bash
2
3#Some cleanup
4rm -rf install autoconf-2.68 src
5
6#Create install directories
7mkdir install
8
9#Untar
10tar -zxvf autoconf-2.68.tar.gz
11
12#Move autoconf into src directory
13mv autoconf-2.68 src
14
15#Compile autoconf
16cd src
17./configure --prefix="$ISSM_DIR/externalpackages/autoconf/install"
18make
19make install
Note: See TracBrowser for help on using the repository browser.