Codebase list libblockdev / 8b982a70-3177-483d-8cdd-480aee50f16f/main autogen.sh
8b982a70-3177-483d-8cdd-480aee50f16f/main

Tree @8b982a70-3177-483d-8cdd-480aee50f16f/main (Download .tar.gz)

autogen.sh @8b982a70-3177-483d-8cdd-480aee50f16f/mainraw · history · blame

#!/bin/bash -e
test -n "$srcdir" || srcdir=`dirname "$0"`
test -n "$srcdir" || srcdir=.

pushd $srcdir

(test -f configure.ac) || {
        echo "*** ERROR: Directory "\`$srcdir\'" does not look like the top-level project directory ***"
        exit 1
}

PKG_NAME=`autoconf --trace 'AC_INIT:$1' configure.ac`

aclocal --install || exit 1
autoreconf --verbose --force --install -Wno-portability || exit 1
popd