autogen.sh 176 B

123456789
  1. #!/bin/sh
  2. bs_dir=$(cd "$(dirname "$0")"; pwd)
  3. autoreconf -fi "${bs_dir}"
  4. if test -n "$1" && test -z "$NOCONFIGURE" ; then
  5. echo 'Configuring...'
  6. "$bs_dir"/configure "$@"
  7. fi