Home | History | Annotate | Line # | Download | only in ipsec-tools
bootstrap revision 1.1.1.1
      1 #!/bin/sh
      2 
      3 set -x
      4 
      5 # Remove autoconf 2.5x's cache directory
      6 
      7 rm -rf autom4te*.cache
      8 
      9 aclocal -I .                            || exit 1
     10 autoheader                              || exit 1
     11 libtoolize --force --copy               || exit 1
     12 automake --foreign --add-missing --copy || exit 1
     13 autoconf                                || exit 1
     14