~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Linux Cross Reference
JACK/autogen.sh


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

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.