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.

17 lines
223 B

  1. #!/bin/sh
  2. set -x
  3. rm -f config.cache
  4. type -p glibtoolize 1>/dev/null 2>&1
  5. if test "$?" = "0"; then
  6. glibtoolize --copy --force
  7. else
  8. libtoolize --copy --force
  9. fi
  10. aclocal -I m4
  11. autoheader
  12. automake -a -c -f
  13. autoconf
  14. exit