Changeset 12697


Ignore:
Timestamp:
07/23/12 16:31:14 (13 years ago)
Author:
Eric.Larour
Message:

Removed exit 0 statement, which was too restrictive.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/scripts/automakererun.sh

    r12586 r12697  
    1010cd $ISSM_DIR
    1111autoreconf -iv -I m4
    12 
    13 exit 0
    14 
    15 ACLOCAL="$ISSM_DIR/externalpackages/automake/install/bin/aclocal"
    16 AUTOCONF="$ISSM_DIR/externalpackages/autoconf/install/bin/autoconf"
    17 AUTOHEAD="$ISSM_DIR/externalpackages/autoconf/install/bin/autoheader"
    18 AUTOMAKE="$ISSM_DIR/externalpackages/automake/install/bin/automake"
    19 
    20 echo "removing config.cach"
    21 rm -rf config.cach
    22 rm -rf aclocal.m4
    23 
    24 if [ ! -f "$ACLOCAL" ]
    25 then echo "issm aclocal not found, calling default aclocal"
    26         aclocal -I m4
    27 else echo "Calling aclocal"
    28         $ACLOCAL -I m4
    29 fi
    30 
    31 if [ ! -f "$AUTOCONF" ]
    32 then echo "issm autoconf not found, calling default aclocal"
    33         autoconf
    34 else echo "Calling autoconf"
    35         $AUTOCONF
    36 fi
    37 
    38 if [ ! -f "$AUTOHEAD" ]
    39 then echo "issm autoheader not found, calling default aclocal"
    40         autoheader
    41 else echo "Calling autoheader"
    42         $AUTOHEAD
    43 fi
    44 
    45 if [ ! -f "$AUTOMAKE" ]
    46 then echo "issm automake  not found, calling default aclocal"
    47         automake
    48 else echo "Calling automake "
    49         $AUTOMAKE -a
    50 fi
Note: See TracChangeset for help on using the changeset viewer.