jack1 codebase
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.

32 lines
587B

  1. #!/bin/sh
  2. libtoolize --force 2>&1 | sed '/^You should/d' || {
  3. echo "libtool failed, exiting..."
  4. exit 1
  5. }
  6. aclocal $ACLOCAL_FLAGS || {
  7. echo "aclocal \$ACLOCAL_FLAGS where \$ACLOCAL_FLAGS= failed, exiting..."
  8. exit 1
  9. }
  10. autoheader || {
  11. echo "autoheader failed, exiting..."
  12. exit 1
  13. }
  14. automake --add-missing --foreign || {
  15. echo "automake --add-missing --foreign failed, exiting..."
  16. exit 1
  17. }
  18. autoconf || {
  19. echo "autoconf failed, exiting..."
  20. exit 1
  21. }
  22. echo "Running ./configure --enable-maintainer-mode $@..."
  23. ./configure --enable-maintainer-mode $@