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