You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
297 B

  1. #! /bin/sh
  2. if [ -x "`which autoreconf 2>/dev/null`" ] ; then
  3. exec autoreconf -ivf
  4. fi
  5. if glibtoolize --version > /dev/null 2>&1; then
  6. LIBTOOLIZE='glibtoolize'
  7. else
  8. LIBTOOLIZE='libtoolize'
  9. fi
  10. $LIBTOOLIZE && \
  11. aclocal && \
  12. automake --add-missing --force-missing --include-deps && \
  13. autoconf