🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
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.

12 lines
308 B

  1. #!/bin/sh
  2. #
  3. # Regenerate configuration files
  4. cp acinclude.m4 aclocal.m4
  5. found=false
  6. for autoconf in autoconf autoconf259 autoconf-2.59
  7. do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi
  8. done
  9. if test x$found = xfalse; then
  10. echo "Couldn't find autoconf, aborting"
  11. exit 1
  12. fi