1 2 3 4 5 6 7 8 9 10 11 12 |
#!/bin/sh if [ "$1" = "--ignore_localversion" ]; then export MAKE_COCCI_RELEASE="y" else unset MAKE_COCCI_RELEASE fi aclocal -I setup autoconf -Wall && automake ( cd bundles/parmap && \ autoheader && aclocal && autoconf -Wall ) ( cd bundles/stdcompat/stdcompat-current && \ autoheader && aclocal && automake && autoconf -Wall ) |