~fginther/+junk/mbs-hooks-test

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
set -ex

# prepare the source branch as if it was released
if [ -f autogen.sh ]; then
    if grep -q GTK_DOC_CHECK configure.*; then
        gtkdocize
    fi        
    autoreconf -f -i
    aclocal
    if grep -q IT_PROG_INTLTOOL configure.*; then 
        intltoolize
    fi        
fi