Codebase list libnice / debian/0.1.7-1 autogen.sh
debian/0.1.7-1

Tree @debian/0.1.7-1 (Download .tar.gz)

autogen.sh @debian/0.1.7-1raw · history · blame

#!/bin/sh
set -e

test -d m4 || mkdir m4
gtkdocize || exit 1

autoreconf -fi

# Honor NOCONFIGURE for compatibility with gnome-autogen.sh
if test x"$NOCONFIGURE" = x; then
    run_configure=true
    for arg in $*; do
        case $arg in
            --no-configure)
                run_configure=false
                ;;
            *)
                ;;
        esac
    done
else
    run_configure=false
fi

if test $run_configure = true; then
    ./configure "$@"
fi