aboutsummaryrefslogtreecommitdiff
path: root/gst-vocschnipselssink/autogen.sh
blob: 9df38d3fa27ac84077cde47d0ad17aa5757757a4 (plain)
  1. #!/bin/sh
  2. # you can either set the environment variables AUTOCONF, AUTOHEADER, AUTOMAKE,
  3. # ACLOCAL, AUTOPOINT and/or LIBTOOLIZE to the right versions, or leave them
  4. # unset and get the defaults
  5. autoreconf --verbose --force --install --make || {
  6. echo 'autogen.sh failed';
  7. exit 1;
  8. }
  9. ./configure || {
  10. echo 'configure failed';
  11. exit 1;
  12. }
  13. echo
  14. echo "Now type 'make' to compile this module."
  15. echo