~azzar1/snapd-glib-fork/glib-2-40

« back to all changes in this revision

Viewing changes to autogen.sh

  • Committer: Robert Ancell
  • Date: 2016-09-20 04:26:55 UTC
  • Revision ID: git-v1:b51b51dc9db08a42ac29f756c3ed222d8dab1256
Run intltool in autogen.sh

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
        exit 1
17
17
}
18
18
 
 
19
INTTOOLIZE=`which intltoolize`
 
20
if test -z $INTTOOLIZE; then
 
21
        echo "*** No Intltool found, please install it ***"
 
22
        exit 1
 
23
fi
 
24
 
19
25
GTKDOCIZE=`which gtkdocize`
20
26
if test -z $GTKDOCIZE; then
21
27
        echo "*** No GTK-Doc found, please install it ***"
38
44
 
39
45
rm -rf autom4te.cache
40
46
 
 
47
intltoolize --force --copy || exit $?
41
48
gtkdocize || exit $?
42
49
autoreconf --force --install --verbose || exit $?
43
50