Changeset 13156


Ignore:
Timestamp:
08/27/12 14:01:29 (13 years ago)
Author:
Mathieu Morlighem
Message:

CHG: install all autotools packages in one single directory to avoid issues whith autoreconf. autotools now installs autoconf, automake and libtool

Location:
issm/trunk-jpl
Files:
2 added
3 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/etc/environment.csh

    r13147 r13156  
    5454endif
    5555
    56 #AUTOCONF
    57 set AUTOCONF_DIR="$ISSM_DIR/externalpackages/autoconf/install"
    58 if (-d $AUTOCONF_DIR) then
    59         setenv PATH {$AUTOCONF_DIR}/bin:{$PATH}
    60 endif
    61 
    62 #AUTOMAKE
    63 set AUTOMAKE_DIR="$ISSM_DIR/externalpackages/automake/install"
    64 if (-d $AUTOMAKE_DIR) then
    65         setenv PATH {$AUTOMAKE_DIR}/bin:{$PATH}
    66 endif
    67 
    68 #LIBTOOL
    69 set LIBTOOL_DIR="$ISSM_DIR/externalpackages/libtool/install"
    70 if (-d $LIBTOOL_DIR) then
    71         setenv PATH {$LIBTOOL_DIR}/bin:{$PATH}
     56#AUTOTOOLS
     57set AUTOTOOLS_DIR="$ISSM_DIR/externalpackages/autotools/install"
     58if (-d $AUTOTOOLS_DIR) then
     59        setenv PATH {$AUTOTOOLS_DIR}/bin:{$PATH}
    7260endif
    7361
  • issm/trunk-jpl/etc/environment.sh

    r13149 r13156  
    8686pathappend "$DOXYGEN_DIR/bin"
    8787
    88 AUTOCONF_DIR="$ISSM_DIR/externalpackages/autoconf/install"
    89 pathprepend "$AUTOCONF_DIR/bin"
    90 
    91 AUTOMAKE_DIR="$ISSM_DIR/externalpackages/automake/install"
    92 pathprepend "$AUTOMAKE_DIR/bin"
    93 
    94 LIBTOOL_DIR="$ISSM_DIR/externalpackages/libtool/install"
    95 pathprepend "$LIBTOOL_DIR/bin"
     88AUTOTOOLS_DIR="$ISSM_DIR/externalpackages/autotools/install"
     89pathprepend "$AUTOTOOLS_DIR/bin"
    9690
    9791SDK_DIR="C:/MicrosoftVisualStudio 9.0/Microsoft Visual C++ 2008 Express Edition with SP1 - ENU"
  • issm/trunk-jpl/scripts/automakererun.sh

    r13090 r13156  
    99
    1010cd $ISSM_DIR
    11 autoreconf -iv -I externalpackages/libtool/install/share/aclocal
     11autoreconf -iv
Note: See TracChangeset for help on using the changeset viewer.